This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/auth/perform_reset.html

21 lines
593 B
HTML
Raw Normal View History

2022-11-18 03:16:34 +01:00
{% 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 %}