SOITA/templates/resetPassword.html
2022-01-25 18:17:58 +01:00

17 lines
437 B
HTML

{% extends "authBase.html" %}
{% block title %}Reset hasła{% endblock %}
{% block content %}
<h2>Reset hasła</h2>
<form method="post">
<input type="email" id="email" name="email" class="form-control" placeholder="Email" required><br><br>
<input type="submit" value="Wyślij email"><br><br>
</form>
<div class="linkDefault">
<a href="{% url 'login' %}">Wróć</a>
</div>
{% endblock %}