]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/users/unsubscribe.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / users / unsubscribe.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Unsubscribe") }}{% end block %}
4
5 {% block container %}
6 <div class="columns is-centered">
7 <div class="column is-one-third-desktop">
8 <div class="notification my-auto">
9 <h5 class="title is-5">{{ _("We'd Be Sorry To See You Go") }}</h5>
10
11 <div class="content">
12 <p>
13 {{ _("If you unsubscribe, you will no longer receive important emails from the IPFire Project.") }}
14 {{ _("There are plenty of benefits to remain subscribed:") }}
15 </p>
16
17 <ul>
18 <li>{{ _("Important release announcements including notificiations about security updates") }}</li>
19 <li>{{ _("News from our blog and inside the project") }}</li>
20 <li>{{ _("Information about our fundraising efforts") }}</li>
21 </ul>
22 </div>
23
24 <div class="block">
25 <form method="POST" action="/subscribe">
26 {% raw xsrf_form_html() %}
27
28 <button type="submit" class="button is-success is-large is-fullwidth">
29 {{ _("Continue Receiving Important Updates") }}
30 </button>
31 </form>
32 </div>
33
34 <div class="block">
35 <form method="POST" action="/unsubscribe">
36 {% raw xsrf_form_html() %}
37
38 <button type="submit" class="button is-danger is-fullwidth">
39 {{ _("Unsubscribe") }}
40 </button>
41 </form>
42 </div>
43 </div>
44 </div>
45 </div>
46 {% end block %}