mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-28 10:26:16 +00:00
15 lines
714 B
HTML
15 lines
714 B
HTML
{% extends "base.html" %}
|
|
{% from "macros/input.html" import text %}
|
|
|
|
{% block content %}
|
|
<div class="block secondary">
|
|
<h2>Password Reset</h2>
|
|
<p>Forgotten your current password? Go here [insert password reset tool link]</p>
|
|
<form action="{{ url_for('account.password_reset') }}" method="POST">
|
|
{{ text(id="current-password", name="current", type="password", required=True) }}
|
|
{{ text(id="new-password", name="new", type="password", required=True) }}
|
|
{{ text(id="confirm-password", name="confirm", type="password", required=True) }}
|
|
<button type="submit" class="button secondary">Reset</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|