forked from will0101/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscribed.html
38 lines (32 loc) · 1.06 KB
/
subscribed.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{{ define "main" }}
<section>
<div class="container">
<div class="row">
<div class="col">
<div class="subscription-content">
<div>
<h1 class="display-1 text-center">Subscription Confirmed</h1>
<p class="text-center one-box-down">You've successfully subscribed to our newletter. Don't worry, we won't blow up your inbox. Here at tea, we take a pretty minimal approach to emails. If there's something that you absolutely need to know, we'll reach out. In the meantime, be sure to <a href="https://discord.gg/KCZsXfJphn">join our Discord!</a></p>
<a href="/">
<button id="back-home" class="detail-btn-large"><i class="icon-enter-arrow"></i>BACK TO HOME PAGE</button>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<style>
.subscription-content{
position: relative;
height: 80vh;
display: flex;
align-items: center;
}
#back-home{
display: block;
margin-left:auto;
margin-right:auto;
}
</style>
{{ end }}