]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/auth/activate.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / auth / activate.html
CommitLineData
d8a15b2e
MT
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
b4d72c76
MT
10 <p>
11 {{ _("Thank you for creating a new account.") }}
12 {{ _("To activate it, please enter a strong password.") }}
13 </p>
14
d8a15b2e
MT
15 <form action="" method="POST">
16 {% raw xsrf_form_html() %}
17
b4d72c76 18 {% module Password() %}
d8a15b2e 19
e6b114b8
MT
20 <div class="d-grid">
21 <button type="submit" class="btn btn-primary" disabled>
22 {{ _("Activate Account") }}
23 </button>
24 </div>
d8a15b2e
MT
25 </form>
26 </div>
27 </div>
28{% end block %}