forked from DGNum/gestiojeux
c836f642fa
This avoid the weird double username situation where we want to give the users the choice of their displayed name but at the same time we need them to never change their CAS username. Now CAS matches on email so we do not have problems.
12 lines
231 B
HTML
12 lines
231 B
HTML
{% extends "small_page.html" %}
|
|
|
|
{% block "content" %}
|
|
<h1>Changement de mot de passe</h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Changer de mot de passe</button>
|
|
</form>
|
|
{% endblock %}
|
|
|