{% extends "usermgr/base.html" %} {% block main_title %}New User Profile{% endblock %} {% block main_csslinks %}{% load adminmedia %} {% endblock %} {% block content %}

New User Profile

Account Information

{{ form.username.html_error_list }} {{ form.username }}

{{ username_help_text }}

{{ form.honorific.html_error_list }}{{ form.honorific }}
{{ form.first_name.html_error_list }}{{ form.first_name }}
{{ form.middle.html_error_list }}{{ form.middle }}
{{ form.last_name.html_error_list }}{{ form.last_name }}
{{ form.suffix.html_error_list }}{{ form.suffix }}

Please fill out the your name as you wish it to be represented in convention material and official communications. *Only your first and last name are required.

{{ form.email.html_error_list }} {{ form.email }}
{{ form.affiliation.html_error_list }} {{ form.affiliation }}
{{ form.url.html_error_list }} {{ form.url }}
{% if not form.manipulator.change %}
{{ form.password.html_error_list }} {{ form.password }}
{{ form.confirm.html_error_list }} {{ form.confirm }}

Enter the same password as above, for verification.

{% endif %}
{% if form.manipulator.change %}

Cancel

{% else %} {% endif %}
{% endblock %}