SOITA/templates/resetPassword.html

17 lines
437 B
HTML
Raw Normal View History

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