Password reset, standardize some stuff.
[cas.git] / src / accounts / templates / account / profile.html
1 {% extends "account/base.html" %}
2 {% load i18n %}
3
4
5 {% block title %}{% trans "Your profile" %}{% endblock %}
6
7
8 {% block menu %}
9   {% with menu="profile" %}
10     {{ block.super }}
11   {% endwith %}
12 {% endblock %}
13
14
15 {% block accounts-content %}
16   <h1>{% trans "Your profile" %}</h1>
17   <form method="post">
18     {% csrf_token %}
19     {{ form.as_p }}
20     <p><button type="submit">{% trans "Change profile" %}</button></p>
21   </form>
22 {% endblock %}