-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 1.24 KB
/
index.html
File metadata and controls
65 lines (65 loc) · 1.24 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
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
background-color: white;
width: 100%;
max-width: 600px;
margin: 0 auto;
padding: 20px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: #333;
font-size: 24px;
}
.logo {
margin: 20px 0;
}
.verify-code {
font-size: 24px;
font-weight: bold;
color: #4caf50;
margin: 20px 0;
letter-spacing: 2px;
}
.footer {
margin-top: 40px;
color: #999;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<img
src="https://example.com/instamine-logo.png"
alt="InstaMine Logo"
class="logo"
width="120"
height="120"
/>
<h1>Verify Your InstaMine Account</h1>
<p>
Thank you for signing up with InstaMine. Please use the code
below to verify your account:
</p>
<div class="verify-code">${code}</div>
<p>If you did not request this, please ignore this email.</p>
<div class="footer">
<p>
© ${new Date().getFullYear()} InstaMine. All rights
reserved.
</p>
</div>
</div>
</body>
</html>