{{ csrf() }}
{{ _('My Account') }}

{% trans -%} Manage basic account information, such as username and email address. {%- endtrans %}

  • {{ form.username }} {{ form.username.errors }}
  • {{ form.email }} {{ form.email.errors }}
  • {{ form.emailhidden.errors }}
  • {{ _('Change Password') }}
{{ _('Password') }}

{% trans reset_url=url('users.pwreset') -%} Change your password. If you forgot your password, you can use the reset form. {%- endtrans %}

  1. {{ form.oldpassword }} {{ form.oldpassword.errors }}
  2. {% with form_user=form.instance %}{% include "users/tougher_password.html" %}{% endwith %}  
  3. {{ form.password }} {{ form.password.errors }}
  4. {{ form.password2 }} {{ form.password2.errors }}
{{ _('Profile') }}

{% trans -%} Give us a bit more information about yourself. All these fields are optional, but they'll help other users get to know you better. {%- endtrans %}

  1. {{ form.display_name }} {{ form.display_name.errors }}
  2. {{ form.location }} {{ form.location.errors }}
  3. {{ form.occupation }} {{ form.occupation.errors }}
  4. {{ form.homepage }} {{ form.homepage.errors }}
  5. {% if not amouser.picture_type %}{{ _('No Photo') }}{% endif %} {% if amouser.picture_type %} {{ _('Delete current photo') }} {% endif %} {{ form.photo.errors }}
{{ _('Details') }}

{% trans -%} Introduce yourself to the community, if you like! This text will appear publicly on your user info page. {%- endtrans %}

{{ form.bio }} {{ some_html_tip() }} {{ form.bio.errors }}
{# /.profile-detail #} {# TODO(apps): Revert this when we have collections for apps. #} {% if not webapp %}
{{ _('Miscellaneous') }}

{% trans -%} Decide what collections should be shown in your profile. {%- endtrans %}

  • {{ form.display_collections.errors }}
  • {{ form.display_collections_fav.errors }}
{% endif %}
{{ _('Notifications') }}

{% if webapp %} {{ loc('From time to time, Mozilla may send you email. Please select the topics you are interested in.') }} {% else %} {% trans %} From time to time, Mozilla may send you email about upcoming releases and add-on events. Please select the topics you are interested in. {% endtrans %} {% endif %}

{{ form.notifications }}

{% if webapp %} {{ loc('Mozilla reserves the right to contact you individually about specific concerns with your apps.') }} {% else %} {% trans %} Mozilla reserves the right to contact you individually about specific concerns with your hosted add-ons. {% endtrans %} {% endif %}

{% if 'admin_log' in form.fields %}
{{ _('Admin') }}
  • {{ form.admin_log.label }} {{ required() }} {{ form.admin_log }} {{ form.admin_log.errors }}
  • {{ form.notes.label }} {{ form.notes }} {{ form.notes.errors }}
  • {{ form.confirmationcode }} {{ form.confirmationcode.errors }}
  • {{ form.anonymize }} {{ form.anonymize.errors }}
{% endif %}
{# /#user-profile #}
{# /.tab-wrapper #}