]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/people/unsubscribe.html
CSS: Replace btn-block with buttons wrapped in d-grid
[ipfire.org.git] / src / templates / people / unsubscribe.html
CommitLineData
92c4b559
MT
1{% extends "../base.html" %}
2
3{% block title %}{{ _("Unsubscribe") }}{% end block %}
4
5{% block content %}
6 <div class="row justify-content-center my-5">
7 <div class="col col-md-8 col-lg-6">
8 <div class="card border-danger">
9 <div class="card-body">
14b1401b 10 <h5>{{ _("We'd Be Sorry To See You Go") }}</h5>
92c4b559
MT
11
12 <p>
13 {{ _("If you unsubscribe, you will no longer receive important emails from the IPFire Project.") }}
14b1401b 14 {{ _("There are plenty of benefits to remain subscribed:") }}
92c4b559
MT
15 </p>
16
14b1401b
MT
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
92c4b559
MT
23 <form action="/subscribe" method="POST">
24 {% raw xsrf_form_html() %}
25
e6b114b8
MT
26 <div class="d-grid">
27 <button type="submit" class="btn btn-success mb-3">
28 {{ _("Continue Receiving Important Updates") }}
29 </button>
30 </div>
92c4b559
MT
31 </form>
32
33 <form action="/unsubscribe" method="POST">
34 {% raw xsrf_form_html() %}
35
e6b114b8
MT
36 <div class="d-grid">
37 <button type="submit" class="btn btn-danger">
38 {{ _("Unsubscribe") }}
39 </button>
40 </div>
92c4b559
MT
41 </form>
42 </div>
43 </div>
44 </div>
45 </div>
46{% end block %}