mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 22:59:30 +00:00
21 lines
535 B
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 %}
|