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/trigger_reset.html

19 lines
461 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>
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
</fieldset>
<div class="buttons">
2022-11-18 03:36:25 +01:00
<button>Send Email</button>
2022-11-18 03:16:34 +01:00
</div>
</form>
{% endblock %}