-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpassword_reset_key_message.html
More file actions
60 lines (53 loc) · 1.9 KB
/
Copy pathpassword_reset_key_message.html
File metadata and controls
60 lines (53 loc) · 1.9 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
{% load i18n %}{% autoescape off %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #7f22fe;
color: white !important;
text-decoration: none;
border-radius: 5px;
margin: 20px 0;
}
.footer {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #eee;
font-size: 12px;
color: #666;
}
</style>
</head>
<body>
<h2>{% blocktrans with site_name=current_site.name %}Hello from {{ site_name }}!{% endblocktrans %}</h2>
{% if user.first_name %}
<p>Dear {{ user.first_name }},</p>
{% else %}
<p>Hello,</p>
{% endif %}
<p>{% blocktrans with site_name=current_site.name %}You are receiving this email because a password reset was requested for your {{ site_name }} account. If you did not make this request, please ignore this email.{% endblocktrans %}</p>
<p>{% blocktrans %}To reset your password, please click the button below:{% endblocktrans %}</p>
<a href="{{ password_reset_url }}" class="button">Reset Password</a>
<p>{% blocktrans %}This password reset link will expire in a few hours for security reasons.{% endblocktrans %}</p>
<p>{% blocktrans %}If you have any issues, please contact our support team.</p>
<div class="footer">
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}
Thank you for using {{ site_name }}!<br>
<a href="https://{{ site_domain }}">{{ site_domain }}</a>
{% endblocktrans %}
</div>
</body>
</html>
{% endautoescape %}