mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 07:29:43 +00:00
20 lines
593 B
HTML
20 lines
593 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Reset Password{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Reset Password</legend>
|
|
<p>You are resetting your password for {{ reset.user.email }}.</p>
|
|
<p>Please choose your new password below.</p>
|
|
{% for field in form %}
|
|
{% include "forms/_field.html" %}
|
|
{% endfor %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<button>Reset</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|