-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (106 loc) · 2.92 KB
/
index.html
File metadata and controls
119 lines (106 loc) · 2.92 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Batlaz Email Verification</title>
<style>
@font-face {
font-family: "Regular"; /*Can be any text*/
src: local("AeonikTRIAL-Regular"),
url("./assets/fonts/AeonikTRIAL-Regular.otf") format("opentype");
}
@font-face {
font-family: "Bold"; /*Can be any text*/
src: local("AeonikTRIAL-Bold"),
url("./assets/fonts/AeonikTRIAL-Bold.otf") format("opentype");
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
/* font-family: ; */
}
body {
display: flex;
justify-content: center;
align-items: center;
font-family: "Regular" !important;
min-height: 100vh;
background-image: url("./assets/main-background.png");
background-repeat: no-repeat;
background-size: cover;
}
h2 {
font-weight: 700;
margin-top: 1rem;
margin-bottom: 1.5rem;
font-size: xx-large;
}
.download-image {
color: #7e20c9;
cursor: pointer;
margin-top: 1rem;
margin-bottom: 1rem;
}
.main-container {
max-width: 420px;
}
section .first-section {
background-color: #62199d;
text-align: center;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
background-image: url("./assets/secondary-background.png");
padding: 1.5rem;
}
section .second-section {
background-color: #ffffff;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
text-align: center;
padding: 1rem 3rem;
}
.email-container {
text-align: center;
}
.gray-color {
color: hsl(278, 5%, 45%);
}
.email-body {
font-size: x-large;
font-weight: 600;
line-height: 1.55;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
.note {
margin-bottom: 1rem;
font-size: 14.5px;
}
</style>
</head>
<body>
<section class="main-container">
<section class="first-section">
<img src="./assets/email_logo.png" alt="" />
</section>
<section class="second-section">
<h2>Congratulations!</h2>
<section>
<section class="email-container">
<section class="email-body">
<p>Your email has been confirmed.</p>
</section>
</section>
<p class="gray-color note">
If you received this in error, simply ignore this email and do not
click the button
</p>
<p class="gray-color">Batlaz.</p>
</section>
</section>
</section>
</body>
</html>