-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (151 loc) · 4.23 KB
/
Copy pathindex.html
File metadata and controls
158 lines (151 loc) · 4.23 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div
style="
margin: 0;
padding: 0;
background-color: #f4f4f4;
font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
"
>
<table
align="center"
border="0"
cellpadding="0"
cellspacing="0"
width="100%"
style="
max-width: 600px;
margin: 20px auto;
background-color: #ffffff;
border-radius: 8px;
overflow: hidden;
border-collapse: collapse;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
"
>
<tr>
<td style="padding: 40px 30px; text-align: center">
<div style="margin-bottom: 25px">
<img
src="https://superlightingbd.com/assets/logo.png"
alt="Super Lighting BD"
width="120"
height="120"
style="
display: block;
margin: 0 auto;
border-radius: 50%;
border: 4px solid #9e9eec;
object-fit: contain;
"
/>
</div>
<h2
style="
color: #333333;
font-size: 24px;
font-weight: 700;
margin: 0 0 20px 0;
"
>
Verify Your Email Address
</h2>
<p
style="
color: #555555;
font-size: 16px;
line-height: 1.6;
margin: 0 0 30px 0;
"
>
Welcome to <strong>Super Lighting BD</strong>! We're excited to
have you on board. To get started, please confirm your email
address by clicking the button below:
</p>
<table
border="0"
cellpadding="0"
cellspacing="0"
style="margin: 0 auto"
>
<tr>
<td align="center" bgcolor="#007bff" style="border-radius: 5px">
<a
href="${verificationLink}"
target="_blank"
style="
display: inline-block;
padding: 14px 30px;
font-size: 16px;
font-weight: bold;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
"
>
Verify Email
</a>
</td>
</tr>
</table>
<hr
style="
border: 0;
border-top: 1px solid #eeeeee;
margin: 40px 0 20px 0;
"
/>
<p style="color: #999999; font-size: 13px; margin-bottom: 25px">
If you did not create an account with Super Lighting BD, you can
safely ignore this email.
</p>
<div style="text-align: center">
<p
style="
color: #333333;
font-size: 15px;
font-weight: 600;
margin: 0;
"
>
Regards,
</p>
<p style="color: #555555; font-size: 14px; margin: 5px 0 0 0">
The Super Lighting BD Team
</p>
</div>
</td>
</tr>
</table>
<table
align="center"
border="0"
cellpadding="0"
cellspacing="0"
width="100%"
style="max-width: 600px; margin: 0 auto"
>
<tr>
<td
style="
padding: 20px;
text-align: center;
color: #aaaaaa;
font-size: 12px;
"
>
© ${new Date().getFullYear()} Super Lighting BD. All rights
reserved.
</td>
</tr>
</table>
</div>
</body>
</html>