Implemented the "Forgot Password" field with functionalities. If you're self-hosting, you need to use some variables, which will be explained at a later point in the readme and on the docker page.
16 lines
446 B
HTML
16 lines
446 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block app_content %}
|
|
<h1>Reset Password</h1>
|
|
<form action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
<p>
|
|
{{ form.email.label }}<br>
|
|
{{ form.email(size=64) }}<br>
|
|
{% for error in form.email.errors %}
|
|
<span style="color: red;">[{{ error }}]</span>
|
|
{% endfor %}
|
|
</p>
|
|
<p>{{ form.submit() }}</p>
|
|
</form>
|
|
{% endblock %} |