Skip to content

Commit

Permalink
update email html
Browse files Browse the repository at this point in the history
  • Loading branch information
vvihorev committed Nov 21, 2023
1 parent 41c3ced commit 213fc52
Showing 1 changed file with 16 additions and 22 deletions.
38 changes: 16 additions & 22 deletions html_templates/reset_password_email.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Password reset email</title>
</head>
<body>

<h2 style="color: #27a9e1;"> Hey!</h2>

<p style="font-size: 14px;color: #030303;">It seems you have forgotten your password and requested a reset.</p>

<p style="font-size: 18px;color: #030303;">Follow this link to reset your password:</p>
<p style="font-size: 18px;color: #030303;"> <a href="{{url}}"> {{url}}</a></p>
<b style="font-size: 18px;color: #ff9999;">Note: This link will expire in {{expire_in_minutes}} minutes.</b>
<br>

<hr style="border: 1px solid #CCCCCC;">

<p style="font-size: 14px;color: #888888;">If you've received this mail without filling a reqeust, it's likely that a user entered your email address by mistake. In that case, just ignore it.</p>

</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Password reset email</title>
</head>
<body>
<h2 style="color: #27a9e1;"> Hey!</h2>
<p style="font-size:18px;color: #030303;">It seems you have forgotten your password and requested a reset.</p>
<p style="font-size:18px;color: #030303;">Follow this link to reset your password:</p>
<p><a style="font-size:18px;display: inline-block; padding: 10px 20px; background-color: #27a9e1; color: #ffffff; text-decoration: none; border-radius: 5px;" href="{{url}}">Reset password</a></p>
<b style="font-size:18px;color: #ff9999;">Note: This link will expire in {{int(expire_in_minutes)}} minutes.</b>
<br>
<hr style="border: 1px solid #CCCCCC;">
<p style="font-size:14px;color: #888888;">If you've received this mail without filling a reqeust, it's likely that a user entered your email address by mistake. In that case, just ignore it.</p>
</body>
</html>

0 comments on commit 213fc52

Please sign in to comment.