{% extends 'frontend_base.html' %} {% from 'security/_macros.html' import render_field_with_errors, render_field %} {% block content %} {{ super() }}

Welcome to SlideAtlas

New Account Information


{{ register_user_form.hidden_tag() }}
{{ render_field_with_errors(register_user_form.full_name, required=True, pattern='[A-Za-z0-9 -]{3,50}', title='Full name should be 3-50 alpha-numeric characters') }}
{{ render_field_with_errors(register_user_form.email, required=True, title='Please enter a valid email here') }}

After submitting this form, you will receive an email with instructions to confirm your account and create a password.

{{ render_field(register_user_form.submit, class='btn') }}

Your email address will be used as a unique username to identify your affiliation and grant you access to content.
SlideAtlas will not share your email address with any third party, nor use it for any other purpose than SlideAtlas site administration.

{% endblock content %}