{% extends "Authentication/unauthenticated_base.html" %} {% block full_title %} Plom - Set Password {% endblock full_title %} {% block main_content %}

Set Password for {{ username }}


Please enter your new password below to log in to Plom.

{% csrf_token %}
{{ form.new_password1.label }}
{{ form.new_password1 }}
{{ form.new_password2.label }}
{{ form.new_password2 }}
Note that:
    {% for helptext in help_text %}
  • {{ helptext }}
  • {% endfor %}
{% if error_dict %}
{% endif %}
{% endblock main_content %}