forked from apiato/apiato
-
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.
update forgot password email template
- Loading branch information
1 parent
acc4bc6
commit 47fff45
Showing
2 changed files
with
69 additions
and
8 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
76 changes: 68 additions & 8 deletions
76
app/Containers/AppSection/Authentication/Mails/Templates/forgot-password.blade.php
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,13 +1,73 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en-US"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> | ||
<title>Reset Password</title> | ||
<meta name="description" content="Reset Password Email Template."> | ||
<style type="text/css"> | ||
a:hover {text-decoration: underline !important;} | ||
</style> | ||
</head> | ||
<body> | ||
<h3>Reset password</h3> | ||
<div> | ||
Please click on the link to reset your password: | ||
<a href="{{$reseturl}}?email={{$email}}&token={{$token}}">{{$reseturl}}</a>. | ||
</div> | ||
|
||
<body marginheight="0" topmargin="0" marginwidth="0" style="margin: 0px; background-color: #f2f3f8;" leftmargin="0"> | ||
<!--100% body table--> | ||
<table cellspacing="0" border="0" cellpadding="0" width="100%" bgcolor="#f2f3f8" | ||
style="@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700|Open+Sans:300,400,600,700); font-family: 'Open Sans', sans-serif;"> | ||
<tr> | ||
<td> | ||
<table style="background-color: #f2f3f8; max-width:670px; margin:0 auto;" width="100%" border="0" | ||
align="center" cellpadding="0" cellspacing="0"> | ||
<tr> | ||
<td style="height:80px;"> </td> | ||
</tr> | ||
<tr> | ||
<td style="height:20px;"> </td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0" | ||
style="max-width:670px;background:#fff; border-radius:3px; text-align:center;-webkit-box-shadow:0 6px 18px 0 rgba(0,0,0,.06);-moz-box-shadow:0 6px 18px 0 rgba(0,0,0,.06);box-shadow:0 6px 18px 0 rgba(0,0,0,.06);"> | ||
<tr> | ||
<td style="height:40px;"> </td> | ||
</tr> | ||
<tr> | ||
<td style="padding:0 35px;"> | ||
<h1 style="color:#1e1e2d; font-weight:500; margin:0;font-size:32px;font-family:'Rubik',sans-serif;">You have | ||
requested to reset your password</h1> | ||
<span | ||
style="display:inline-block; vertical-align:middle; margin:29px 0 26px; border-bottom:1px solid #cecece; width:100px;"></span> | ||
<p style="color:#455056; font-size:15px;line-height:24px; margin:0;"> | ||
We cannot simply send you your old password. A unique link to reset your | ||
password has been generated for you. To reset your password, click the | ||
following link and follow the instructions. | ||
</p> | ||
<a href="{{$reseturl}}?email={{$email}}&token={{$token}}" | ||
style="background:#20e277;text-decoration:none !important; font-weight:500; margin-top:35px; color:#fff;text-transform:uppercase; font-size:14px;padding:10px 24px;display:inline-block;border-radius:50px;">Reset | ||
Password</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td style="height:40px;"> </td> | ||
</tr> | ||
</table> | ||
</td> | ||
<tr> | ||
<td style="height:20px;"> </td> | ||
</tr> | ||
<tr> | ||
<td style="text-align:center;"> | ||
<p style="font-size:14px; color:rgba(69, 80, 86, 0.7411764705882353); line-height:18px; margin:0 0 0;">© <strong>{{$app_url}}</strong></p> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td style="height:80px;"> </td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
</table> | ||
<!--/100% body table--> | ||
</body> | ||
|
||
</html> |