-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverification.html
More file actions
102 lines (96 loc) · 3.08 KB
/
verification.html
File metadata and controls
102 lines (96 loc) · 3.08 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Verify Your Account</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid #eeeeee;
}
.logo {
max-width: 150px;
height: auto;
}
.content {
padding: 20px 0;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #28a745;
color: #ffffff !important;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
margin: 15px 0;
}
.footer {
font-size: 12px;
color: #999999;
text-align: center;
padding-top: 20px;
border-top: 1px solid #eeeeee;
}
</style>
</head>
<body>
<div class="header">
<!-- Replace with your company logo -->
<img
src="https://example.com/logo.png"
alt="Company Logo"
class="logo"
/>
</div>
<div class="content">
<h2>Verify Your Account</h2>
<p>Hello,</p>
<p>
Thank you for creating an account with us! To complete your
registration, please verify your email address by clicking the
button below:
</p>
<a
href="{{.URL}}?tenant={{.TenantID}}&email={{.Email}}&vt={{.Token}}"
class="button"
>Verify Email Address</a
>
<p>This link will expire in 24 hours for security reasons.</p>
<p>
If the button above doesn't work, copy and paste this link into
your browser:
</p>
<p>
<small
>{{.URL}}?tenant={{.TenantID}}&email={{.Email}}&vt={{.Token}}</small
>
</p>
<p>
If you didn't create an account with us, please ignore this
email.
</p>
</div>
<div class="footer">
<p>© 2026 Your Company Name. All rights reserved.</p>
<p>
If you have any questions, please contact us at
<a href="mailto:support@example.com">support@example.com</a>
</p>
<p>
<a href="https://example.com/privacy">Privacy Policy</a> |
<a href="https://example.com/terms">Terms of Service</a>
</p>
</div>
</body>
</html>