]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/auth/join-success.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / auth / join-success.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Thank You") }}{% end block %}
4
5 {% block content %}
6 <section class="section">
7 <div class="container">
8 <div class="columns is-centered">
9 <div class="column is-half">
10 <div class="notification is-success">
11 <h1 class="title">
12 {{ _("Thank you for joining!") }}
13 </h1>
14
15 <h4 class="subtitle">
16 {{ _("Please check your email for next steps.") }}
17 </h4>
18
19 <div class="block has-text-centered">
20 <span class="icon m-5">
21 <i class="fas fa-check fa-5x"></i>
22 </span>
23 </div>
24 </div>
25 </div>
26 </div>
27 </div>
28 </section>
29 {% end block %}