1
0
Fork 0
forked from muyrety/Smarter
Smarter/smarter/templates/auth/pwreset.j2
Arija A. a3a6316054
.html -> .j2 for Jinja2 correctness
Signed-off-by: Arija A. <ari@ari.lt>
2025-05-27 23:34:42 +03:00

26 lines
1 KiB
Django/Jinja

{% extends "base.j2" %}
{% block title %} Password reset {% endblock %}
{% block main %}
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-5 col-sm-8">
<form method="post" action="{{ url_for('auth.pwreset') }}">
<div class="my-3">
<label for="email" class="form-label text-primary-emphasis">E-Mail</label>
<input id="email" type="email" required autofocus name="email" class="form-control bg-info-subtle text-success border-success-subtle">
</div>
<div class="text-center">
<button type="submit" class="btn btn-outline-primary" id="pwresetButton">Reset password</button>
</div>
</form>
<p class="text-center my-3 text-muted">
This functionality is only available for users who have a set email. Please check your email INBOX or SPAM folder to get the confirmation token.
</p>
</div>
</div>
</div>
{% endblock %}