]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/auth/messages/join.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / auth / messages / join.html
1 {% extends "../../messages/base.html" %}
2
3 {% block hero %}
4 <tr class="hero">
5 <td>
6 <img class="g-img" src="{{ embed_image("img/auth/join@600.jpg") }}" alt="IPFire">
7 </td>
8 </tr>
9 {% end block %}
10
11 {% block content %}
12 <tr class="section">
13 <td>
14 <h1>{{ _("Dear %s!") % first_name }}</h1>
15
16 <p>
17 {{ _("Welcome to our vibrant community! We're thrilled to have you on board.") }}
18 </p>
19
20 <p>
21 {{ _("To activate your membership, please click on the activation link below:") }}
22 </p>
23
24 <table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0">
25 <tr class="button">
26 <td>
27 <a class="primary" href="https://www.ipfire.org/activate/{{ uid }}/{{ activation_code }}">
28 {{ _("Activate Now") }}
29 </a>
30 </td>
31 </tr>
32 </table>
33
34 <p>
35 {{ _("We look forward to seeing you actively participate in our community.") }}
36 </p>
37 </td>
38 </tr>
39 {% end block %}