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

{% if form.manipulator.change %}Edit{% else %}New{% endif %} User Profile

Account Information

{% if not form.manipulator.change %}
All fields, including the username, can be changed after the account has been activated.
{% endif %}
{{ 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.password_confirm.html_error_list }} {{ form.password_confirm }}

Enter the same password as above, for verification.

{% endif %}
{{ form.bio.html_error_list }} {{ form.bio }}

This field is for Speakers to provide a biography to be included in conference materials.
This must be a single paragraph (newlines are not preserved), written in the third person ("Presenter Name is...").
Include where you live, your job, your projects, books you've written, volunteer activities, etc.
Any links discovered will be made clickable. (i.e. example.com, http://www.example.com/foo/)

{% if form.manipulator.change %}

Cancel

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