14 lines
461 B
HTML
14 lines
461 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}Update email{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="accountInfoContainer ">
|
||
|
<form method="post">
|
||
|
<input type="email" id="email" name="email" class="form-control" placeholder="Email" required><br><br>
|
||
|
<input type="submit" value="Change name"><br><br>
|
||
|
</form>
|
||
|
<a class="returnLink" href="{% url 'account' %}">Back to dashboard</a>
|
||
|
</div>
|
||
|
{% endblock %}
|