]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/downloads/thank-you.html
backend: show checksum on thank-you page
[ipfire.org.git] / src / templates / downloads / thank-you.html
CommitLineData
baeec765
MT
1{% extends "../base.html" %}
2
3{% block title %}{{ _("Thank You For Downloading IPFire") }}{% end block %}
4
5{% block container %}
649f7f61
MT
6 <section class="hero is-medium">
7 <div class="hero-body">
ed6bb46c 8 <div class="container">
ed83981e 9 <h1 class="title">
1c8a0d78 10 Thank You For Choosing IPFire<span class="has-text-primary">_</span>
ed6bb46c 11 </h1>
4cfc0589 12 <h4 class="subtitle">{{ _("Your download will begin shortly") }}</h4>
ed6bb46c
RH
13
14 <div class="block">
4cfc0589
RH
15 <a href="{{ file.url }}">{{ file.url }}</a>
16 </div>
17
18 <div class="block">
19 <p>
20 {{ _("After download, please verify the file has the following %s checksum:") % ("SHA-256" if file.sha256 else "SHA-1") }}
21 <span class="is-family-monospace">{{ file.sha256 or file.sha1 }}</span>
22 </p>
ed6bb46c 23 </div>
6c111a72
RH
24 </div>
25 </div>
26 </section>
27
28 <section class="section">
29 <div class="container">
1c8a0d78
MT
30 <div class="block">
31 <p class="is-size-5">
32 {{ _("In the meantime, explore our documentation and community forums for helpful resources.") }}
33 </p>
34
35 <p class="is-size-5">
36 {{ _("Need professional support? Check out Lightning Wire Labs for expert assistance.") }}
37 {{ _("Welcome to the secure world of IPFire!") }}
38 </p>
39 </div>
038961e9
MT
40
41 <div class="buttons are-medium">
42 <a class="button is-dark is-fullwidth" href="/docs/installation">
43 {{ _("Read The Installation Guide") }}
44 </a>
45
46 <a class="button is-primary is-fullwidth" href="/donate">
1c8a0d78
MT
47 {{ _("Donate To Support The Project") }}
48 </a>
49
50 <a class="button is-lwl is-fullwidth" href="https://store.lightningwirelabs.com/products/groups/support">
51 {{ _("Check Out Our Support Plans") }}
038961e9 52 </a>
861bfc58 53 </div>
baeec765 54 </div>
861bfc58 55 </section>
baeec765
MT
56{% end block %}
57
58{% block javascript %}
59 <script type="text/javascript">
4cfc0589
RH
60 setTimeout(function() {
61 window.location = "{{ file.url }}"
62 }, "2000");
baeec765
MT
63 </script>
64{% end %}