17 lines
439 B
HTML
17 lines
439 B
HTML
{% extends "authBase.html" %}
|
|
|
|
{% block title %}Reset password{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Reset password</h2>
|
|
<form method="post">
|
|
<input type="email" id="email" name="email" class="form-control" placeholder="Email" required><br><br>
|
|
<input type="submit" value="Send email"><br><br>
|
|
</form>
|
|
<div class="linkDefault">
|
|
<a href="{% url 'login' %}">Go back</a>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|