{% extends "base_rigs.html" %} {% load widget_tweaks %} {% block title %}Change Password{% endblock %} {% block content %}

Change Password

{% if form.errors or supplement_form.errors %}
Please correct the error(s) below. {{form.errors}} {{supplement_form.errors}}
{% endif %}

Please enter your old password, for security's sake, and then enter your new password twice, so we can verify you typed it in correctly.

{% csrf_token %} {% for field in form %}
{% render_field field class+="form-control" placeholder=field.label %}
{% endfor %}

{% endblock %}