]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/auth/activate.html
people: Add account activation handler
[ipfire.org.git] / src / templates / auth / activate.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Activate Your Account") }}{% 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">{{ _("Activate Your Account") }}</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">
16 {{ _("Activate Account") }}
17 </button>
18 </form>
19 </div>
20 </div>
21 {% end block %}