-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |