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

21 lines
535 B
HTML

{% extends "base.html" %}
{% block title %}Change your E-mail address{% endblock %}
{% block content %}
<div class="page-header">
<h1>Change Email Address</h1>
</div>
<form action="{% url sso-emailupdate %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.email1 %}
{% include "formtools/formfield.html" with field=form.email2 %}
{% csrf_token %}
<input type="submit" value="Change Email" class="btn primary"/>
</fieldset>
</form>
{% endblock %}