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.
23 lines
711 B
HTML
23 lines
711 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block app_content %}
|
|
<h1>Reset Your Password</h1>
|
|
<form action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
<p>
|
|
{{ form.password.label }}<br>
|
|
{{ form.password(size=32) }}<br>
|
|
{% for error in form.password.errors %}
|
|
<span style="color: red;">[{{ error }}]</span>
|
|
{% endfor %}
|
|
</p>
|
|
<p>
|
|
{{ form.password2.label }}<br>
|
|
{{ form.password2(size=32) }}<br>
|
|
{% for error in form.password2.errors %}
|
|
<span style="color: red;">[{{ error }}]</span>
|
|
{% endfor %}
|
|
</p>
|
|
<p>{{ form.submit() }}</p>
|
|
</form>
|
|
{% endblock %} |