]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/auth/password-reset.html
accounts: Use c attribute to store the country
[ipfire.org.git] / src / templates / auth / password-reset.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Password Reset") }}{% end block %}
4
5 {% block content %}
6 <div class="row justify-content-center my-5">
7 <div class="col col-md-4">
8 <h5 class=" mb-4">{{ _("Reset Your Password") }}</h5>
9
10 <form action="" method="POST">
11 {% raw xsrf_form_html() %}
12
13 {% module Password(account) %}
14
15 <button type="submit" class="btn btn-primary btn-block" disabled>
16 {{ _("Reset Password") }}
17 </button>
18 </form>
19 </div>
20 </div>
21 {% end block %}