-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (111 loc) · 2.7 KB
/
Copy pathindex.html
File metadata and controls
121 lines (111 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Reset</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
}
.header {
padding: 20px 0;
text-align: center;
}
.header h1 {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}
.header p {
font-size: 16px;
color: #555;
}
.body {
padding: 20px 0;
}
.body p {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
}
.cta-button {
display: inline-block;
padding: 15px 30px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #0069d9;
}
.footer {
padding: 20px 0;
text-align: center;
font-size: 14px;
color: #777;
}
@media (max-width: 600px) {
.container {
padding: 10px;
}
.header h1 {
font-size: 20px;
}
.body p {
font-size: 14px;
}
.cta-button {
padding: 10px 20px;
font-size: 14px;
}
}
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<table class="container" width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="header">
<h1>Password Reset</h1>
<p>Reset your password here.</p>
</td>
</tr>
<tr>
<td class="body">
<p>Hello [First Name],</p>
<p>We received a request to reset your password. If you did not request this, please ignore this email.</p>
<p>To reset your password, click the button below:</p>
<a href="[Reset Link]" class="cta-button">Reset Password</a>
<p>This link will expire in [Expiration Time].</p>
</td>
</tr>
<tr>
<td class="footer">
<p>Copyright © [Year] [Company Name]. All rights reserved.</p>
<p><a href="[Privacy Policy Link]">Privacy Policy</a> | <a href="[Terms of Service Link]">Terms of Service</a></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>