{% extends 'web/base.html' %} {% load bootstrap3 %} {% block title %}Update account information{% endblock %} {% block flash %} {% if form.non_field_errors %} {% endif %} {% endblock %} {% block content %}

My Account

{% bootstrap_messages %}
{% include 'web/_account-navigation.html' with current_page="participant-update" %}

Account Information

{% csrf_token %} {% bootstrap_form form %} {% buttons %} {% endbuttons %}
{% if not request.user.is_researcher %}

Change Your Password

{% csrf_token %} {% bootstrap_form form2 %} {% buttons %} {% endbuttons %}
{% endif %}
{% endblock %}