-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset_password_temp.go
145 lines (111 loc) · 3.78 KB
/
reset_password_temp.go
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package helpers
const ResetPasswordTemplate = `<div style="font-family:Helvetica Light,Helvetica,Arial,sans-serif;margin:0;padding:0; width:100%" bgcolor="#eeeeee">
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse:collapse">
<tbody><tr>
<td bgcolor="#eeeeee" align="center" style="padding:25px" >
<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-collapse:collapse;max-width:600px" >
<tbody><tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-collapse:collapse">
<tbody>
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-collapse:collapse">
<tbody>
<tr>
<td align="center" style="color:#000000;font-family:Arial,Helvetica,sans-serif;font-size:21px;font-weight:bold;padding:0px;padding-top: 40px;" >
You requested for a password reset
</td>
</tr>
<tr>
<td align="center" style="color:#000000;font-family:Arial,Helvetica,sans-serif;font-size:15px;font-weight:normal;line-height:22px;padding:30px 5% 0px" >
Follow the link below to reset your password
</td>
</tr>
<tr>
<td width="100%" align="center" valign="top" bgcolor="#ffffff" height="20"></td>
</tr>
<tr>
<td width="100%" align="center" valign="top" bgcolor="#ffffff" height="20"></td>
</tr>
<tr>
<td width="100%" align="center" valign="top" bgcolor="#ffffff" height="1" style="padding:0px 30px">
<table cellpadding="0" cellspacing="0" width="30%" style="border-collapse:collapse">
<tbody><tr>
<td style="border-top-color:#eeeeee;border-top-style:solid;border-top-width:1px;padding:0px 30px"></td>
<td>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-collapse:collapse">
<tbody>
<tr>
<td width="100%" align="center" valign="top" bgcolor="#ffffff" height="20"></td>
</tr>
<tr>
<td width="100%" align="center" valign="top" bgcolor="#ffffff" height="1" style="padding:0px 30px">
<table cellpadding="0" cellspacing="0" width="300" height="46" style="border-collapse:collapse">
<tbody><tr>
<td bgcolor="#2ccae7" height="46" align="center" style="border-radius:2px;">
<a href="{{crm_url}}/reset_password.php?email={{email}}&token={{token}}"
style="color:#ffffff;display:inline-block;font-family:\'Helvetica Neue\',arial;font-size:17px;font-weight:bold;line-height:46px;min-width:280px;max-width:280px;text-align:center;text-decoration:none">
Reset Your Password</a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="100%" align="center" valign="top" bgcolor="#ffffff" height="20"></td>
</tr>
<tr>
<td width="100%" align="center" valign="top" bgcolor="#ffffff" height="20"></td>
</tr>
</tbody></table>
</td>
</tr>
<tr>
<td align="center" valign="top" style="font-size:0" >
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td bgcolor="#eeeeee" align="center" style="padding:20px 0px">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" style="border-collapse:collapse;max-width:600px" >
<tbody><tr>
<td align="center" style="color:#818181;font-family:\'Helvetica Light\',\'Helvetica\',Arial,sans-serif;font-size:12px;line-height:1.5;padding-top:5px">
<table style="border-collapse:collapse;text-align:center;width:100%;">
<tbody>
<tr>
<td style="color:#535353;font-size:10px;line-height:16px;padding-bottom:20px;padding-left: 15px;padding-right: 15px;" align="center"><span style="font-size:12px"><span style="font-family:arial,helvetica neue,helvetica,sans-serif">
<a href="{{base_url}}/privacy.php">Privacy Policy</a>
| <a href="{{base_url}}/terms.php">Terms of Use</a> <br>
<span{{app_name}}</span> {{comp_address}}</span></span></td>
</tr>
</tbody>
</table>
<br>
<br>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody>
</table>
</div>`