{% extends "app.html" %} {% block head_lead %} Snikket Web Portal {% endblock %} {% block content %}

Change your password

To change your password, you need to provide the current password as well as the new one. To reduce the chance of typos, we ask for your new password twice.

{{ form.csrf_token }} {% if form.errors %}
Password change failed
    {% for field, errors in form.errors.items() %} {% for error in errors %}
  • {{ error }}
  • {% endfor %} {% endfor %}
{% endif %}
{{ form.current_password.label(class="required") }} {{ form.current_password(class=("has-error" if form.current_password.name in form.errors else "")) }}
{{ form.new_password.label(class="required") }} {{ form.new_password }}
{{ form.new_password_confirm.label(class="required") }} {{ form.new_password_confirm(class=("has-error" if form.new_password_confirm.name in form.errors else "")) }}
Back
{% endblock %}