{% extends "base.html" %} {% block content %} {% if change_successful %}

Congratulations! Your password has been successfully changed. Please test it by going to a Linux prompt and running

% kinit -F {{ remote_user }}/root
If this does not work, please try changing the password again. Failing that, file a HelpSU ticket.

{% else %}
Fill out the form below to change the password for {{ remote_user }}/root. If you have forgotten your current password for {{ remote_user }}/root, file a HelpSU ticket. {{ form.oldpassword.label }} {{ form.oldpassword(size=20, maxlength=60)}}
{{ form.newpassword1.label }} {{ form.newpassword1(size=20, maxlength=60)}}
{{ form.newpassword2.label }} {{ form.newpassword2(size=20, maxlength=60)}}
{{ form.submit }}
{% endif %} {% endblock %}