-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
62 lines (61 loc) · 1.73 KB
/
confirmation.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<script src="./tailwind.config.js"></script>
<title>Confirmation</title>
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
#warning {
display: none;
}
</style>
</head>
<body
class="flex sm:justify-center sm:items-center sm:bg-[#36384d] h-[100vh]"
>
<main
class="flex flex-col justify-between items-center p-6 sm:gap-8 bg-white sm:m-0 sm:w-2/5 sm:p-14 sm:rounded-3xl"
>
<ul
class="h-2/5 flex flex-col justify-evenly mt-28 sm:mt-0 sm:h-full sm:gap-4"
>
<li><img src="./assets/images/icon-success.svg" alt="" /></li>
<li class="text-[#232742] text-4xl font-bold">
Thanks for <br />
subscribing!
</li>
<li class="text-[#232742] sm:w-3/4">
A confirmation email has been sent to
<strong id="strong">ash@loremcompany.com</strong>. Please open it and click the
button inside to confirm your subscription
</li>
</ul>
<button
id="btn"
onclick="nextPage()"
class="bg-[#232742] text-[#fcffff] w-full p-4 rounded-lg hover:bg-gradient-to-r from-[#fe5278] to-[#ff693e] hover:shadow-2xl sm:hover:shadow-[#ff693e]"
>
Dismiss message
</button>
</main>
<div
class="attribution flex absolute justify-center items-center bg-white sm:h-8 sm:w-2/5 w-full bottom-0 gap-x-1"
>
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor </a
>.Coded by
<a href="#">Anshul.</a>
</div>
<script src="./script.js"></script>
</body>
</html>