Files
test-auth/app/templates/sso/emailchange.html

17 lines
268 B
HTML

{% extends "base.html" %}
{% block title %}Change your E-mail address{% endblock %}
{% block content %}
<form action="" method="post">
<table>
{{ form.as_table }}
</table>
<br />
{% csrf_token %}
<input type="submit" value="Change Email" />
</form>
{% endblock %}