SOITA/templates/changeEmail.html

16 lines
496 B
HTML
Raw Normal View History

2022-01-13 23:24:24 +01:00
{% 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>
2022-01-23 17:10:05 +01:00
<input type="submit" value="Change email"><br><br>
2022-01-13 23:24:24 +01:00
</form>
2022-01-23 17:10:05 +01:00
<div class="linkDefault">
<a href="{% url 'account' %}">Back to dashboard</a>
</div>
2022-01-13 23:24:24 +01:00
</div>
{% endblock %}