mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-22 14:19:28 +00:00
21 lines
384 B
HTML
21 lines
384 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="" method="post">
|
|
<fieldset>
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Change Email" class="btn"/>
|
|
</fieldset>
|
|
</form>
|
|
|
|
{% endblock %}
|