]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/people/unsubscribed.html
donation: Fix typo
[ipfire.org.git] / src / templates / people / unsubscribed.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Thank You") }}{% end block %}
4
5 {% block content %}
6 <div class="row justify-content-center my-5">
7 <div class="col-12 col-md-6">
8 <div class="card bg-danger text-white p-md-5 mb-3">
9 <div class="card-body text-center">
10 <span class="fas fa-check fa-5x my-4"></span>
11
12 <p class="lead">
13 {{ _("You have been unsubscribed and will no longer receive important updates from the IPFire Project.") }}
14 </p>
15 </div>
16 </div>
17
18 <form action="/subscribe" method="POST">
19 {% raw xsrf_form_html() %}
20
21 <button type="submit" class="btn btn-success btn-block">
22 {{ _("Continue Receiving Important Updates") }}
23 </button>
24 </form>
25 </div>
26 </div>
27 {% end block %}