mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 14:22:16 +00:00
14 lines
389 B
HTML
14 lines
389 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% block title %}Reset password{% endblock %}
|
|
{% block content %}
|
|
<p>Forgot your password? Enter your email in the form below and we'll send you
|
|
instructions for creating a new one.</p>
|
|
<form method='post' action=''>
|
|
<table>
|
|
{{ form }}
|
|
</table>
|
|
<input type='submit' value="Reset password" />
|
|
{% csrf_token %}
|
|
</form>
|
|
{% endblock %}
|