forked from muyrety/Smarter
26 lines
1 KiB
Django/Jinja
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 %}
|