]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/auth/activated.html
people: Add congratulations page for activating the new account
[ipfire.org.git] / src / templates / auth / activated.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Thank You for Activating Your Account") }}{% end block %}
4
5 {% block content %}
6 <div class="row justify-content-center my-5">
7 <div class="col col-md-4 text-center">
8 <h5>{{ _("Thank You for Activating Your Account") }}</h5>
9
10 <p class="my-4">
11 {{ _("To kick things off, would you like to setup a donation to the IPFire Project?") }}
12 </p>
13
14 <a class="btn btn-lg btn-block btn-primary mb-1" href="https://www.ipfire.org/donate?first_name={{ url_escape(account.first_name) }}&last_name={{ url_escape(account.last_name) }}">
15 <span class="fas fa-heart"></span> {{ _("Donate Now") }}
16 </a>
17
18 <a class="text-secondary small" href="/">
19 {{ _("No thanks, I have already donated") }}
20 </a>
21 </div>
22 </div>
23 {% end block %}