tafil-node-api 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tafil-node-api might be problematic. Click here for more details.
- package/.env +3 -0
- package/app.js +28 -0
- package/bin/generate-app.js +71 -0
- package/controllers/AuthControllers.js +113 -0
- package/controllers/UserControllers.js +34 -0
- package/helpers/SendEmail.js +28 -0
- package/middlewares/authMiddlware.js +28 -0
- package/middlewares/error.js +17 -0
- package/models/userModel.js +36 -0
- package/package.json +26 -0
- package/routes/AuthRoutes.js +16 -0
- package/routes/UserRoutes.js +10 -0
- package/routes/routes.js +9 -0
- package/services/AuthService.js +237 -0
- package/services/UserService.js +116 -0
- package/utils/generateToken.js +11 -0
- package/views/reset-failed.ejs +340 -0
- package/views/reset-password.ejs +482 -0
- package/views/unverified-email.ejs +342 -0
- package/views/verified-email.ejs +362 -0
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
6
|
+
<title>Verify Email</title>
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
/**
|
|
11
|
+
* Google webfonts. Recommended to include the .woff version for cross-client compatibility.
|
|
12
|
+
*/
|
|
13
|
+
@media screen {
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: "Source Sans Pro";
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
19
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff)
|
|
20
|
+
format("woff");
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@font-face {
|
|
24
|
+
font-family: "Source Sans Pro";
|
|
25
|
+
font-style: normal;
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
src: local("Source Sans Pro Bold"), local("SourceSansPro-Bold"),
|
|
28
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGFkQc6VGVFSmCnC_l7QZG60.woff)
|
|
29
|
+
format("woff");
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Avoid browser level font resizing.
|
|
35
|
+
* 1. Windows Mobile
|
|
36
|
+
* 2. iOS / OSX
|
|
37
|
+
*/
|
|
38
|
+
body,
|
|
39
|
+
table,
|
|
40
|
+
td,
|
|
41
|
+
a {
|
|
42
|
+
-ms-text-size-adjust: 100%; /* 1 */
|
|
43
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Remove extra space added to tables and cells in Outlook.
|
|
48
|
+
*/
|
|
49
|
+
table,
|
|
50
|
+
td {
|
|
51
|
+
mso-table-rspace: 0pt;
|
|
52
|
+
mso-table-lspace: 0pt;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Better fluid images in Internet Explorer.
|
|
57
|
+
*/
|
|
58
|
+
img {
|
|
59
|
+
-ms-interpolation-mode: bicubic;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Remove blue links for iOS devices.
|
|
64
|
+
*/
|
|
65
|
+
a[x-apple-data-detectors] {
|
|
66
|
+
font-family: inherit !important;
|
|
67
|
+
font-size: inherit !important;
|
|
68
|
+
font-weight: inherit !important;
|
|
69
|
+
line-height: inherit !important;
|
|
70
|
+
color: inherit !important;
|
|
71
|
+
text-decoration: none !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Fix centering issues in Android 4.4.
|
|
76
|
+
*/
|
|
77
|
+
div[style*="margin: 16px 0;"] {
|
|
78
|
+
margin: 0 !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
body {
|
|
82
|
+
width: 100% !important;
|
|
83
|
+
height: 100% !important;
|
|
84
|
+
padding: 0 !important;
|
|
85
|
+
margin: 0 !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Collapse table borders to avoid space between cells.
|
|
90
|
+
*/
|
|
91
|
+
table {
|
|
92
|
+
border-collapse: collapse !important;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
a {
|
|
96
|
+
color: #1a82e2;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
img {
|
|
100
|
+
height: auto;
|
|
101
|
+
line-height: 100%;
|
|
102
|
+
text-decoration: none;
|
|
103
|
+
border: 0;
|
|
104
|
+
outline: none;
|
|
105
|
+
}
|
|
106
|
+
.form {
|
|
107
|
+
display: flex;
|
|
108
|
+
flex-direction: column;
|
|
109
|
+
}
|
|
110
|
+
.form > input {
|
|
111
|
+
margin: 3px 6px 6px 0;
|
|
112
|
+
padding: 6px;
|
|
113
|
+
width: 35%;
|
|
114
|
+
}
|
|
115
|
+
#password {
|
|
116
|
+
border: 1px solid grey;
|
|
117
|
+
border-radius: 3px;
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
}
|
|
120
|
+
.submit {
|
|
121
|
+
cursor: pointer;
|
|
122
|
+
text-align: center;
|
|
123
|
+
border: none;
|
|
124
|
+
border-radius: 6px;
|
|
125
|
+
color: whitesmoke;
|
|
126
|
+
background-color: royalblue;
|
|
127
|
+
font-weight: bold;
|
|
128
|
+
}
|
|
129
|
+
.submit:hover {
|
|
130
|
+
background-color: rgba(65, 105, 225, 0.782);
|
|
131
|
+
}
|
|
132
|
+
.submited {
|
|
133
|
+
background-color: grey;
|
|
134
|
+
cursor: default;
|
|
135
|
+
}
|
|
136
|
+
.submited:hover {
|
|
137
|
+
background-color: grey;
|
|
138
|
+
}
|
|
139
|
+
.none {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
142
|
+
.success {
|
|
143
|
+
color: green;
|
|
144
|
+
}
|
|
145
|
+
.error {
|
|
146
|
+
color: red;
|
|
147
|
+
}
|
|
148
|
+
.red {
|
|
149
|
+
color: red !important;
|
|
150
|
+
}
|
|
151
|
+
</style>
|
|
152
|
+
</head>
|
|
153
|
+
<body style="background-color: #e9ecef">
|
|
154
|
+
<!-- start preheader -->
|
|
155
|
+
<div
|
|
156
|
+
class="preheader"
|
|
157
|
+
style="
|
|
158
|
+
display: none;
|
|
159
|
+
max-width: 0;
|
|
160
|
+
max-height: 0;
|
|
161
|
+
overflow: hidden;
|
|
162
|
+
font-size: 1px;
|
|
163
|
+
line-height: 1px;
|
|
164
|
+
color: #fff;
|
|
165
|
+
opacity: 0;
|
|
166
|
+
"
|
|
167
|
+
>
|
|
168
|
+
A preheader is the short summary text that follows the subject line when
|
|
169
|
+
an email is viewed in the inbox.
|
|
170
|
+
</div>
|
|
171
|
+
<!-- end preheader -->
|
|
172
|
+
|
|
173
|
+
<!-- start body -->
|
|
174
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
175
|
+
<!-- start logo -->
|
|
176
|
+
<tr>
|
|
177
|
+
<td align="center" bgcolor="#e9ecef">
|
|
178
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
179
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
180
|
+
<tr>
|
|
181
|
+
<td align="center" valign="top" width="600">
|
|
182
|
+
<![endif]-->
|
|
183
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;">
|
|
184
|
+
<tr>
|
|
185
|
+
<td align="center" valign="top" style="padding: 36px 24px;">
|
|
186
|
+
<a href="#" style="display: inline-block;">
|
|
187
|
+
<img src="/images/pawwhite.png" alt="Logo" border="0" width="48" style="display: block; width: 48px; max-width: 48px; min-width: 48px;">
|
|
188
|
+
</a>
|
|
189
|
+
</td>
|
|
190
|
+
</tr>
|
|
191
|
+
</table>
|
|
192
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
193
|
+
</td>
|
|
194
|
+
</tr>
|
|
195
|
+
</table>
|
|
196
|
+
<![endif]-->
|
|
197
|
+
</td>
|
|
198
|
+
</tr>
|
|
199
|
+
<!-- end logo -->
|
|
200
|
+
<!-- start hero -->
|
|
201
|
+
<tr>
|
|
202
|
+
<td align="center" bgcolor="#e9ecef">
|
|
203
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
204
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
205
|
+
<tr>
|
|
206
|
+
<td align="center" valign="top" width="600">
|
|
207
|
+
<![endif]-->
|
|
208
|
+
<table
|
|
209
|
+
border="0"
|
|
210
|
+
cellpadding="0"
|
|
211
|
+
cellspacing="0"
|
|
212
|
+
width="100%"
|
|
213
|
+
style="max-width: 600px"
|
|
214
|
+
>
|
|
215
|
+
<tr>
|
|
216
|
+
<td
|
|
217
|
+
align="left"
|
|
218
|
+
bgcolor="#ffffff"
|
|
219
|
+
style="
|
|
220
|
+
padding: 36px 24px 0;
|
|
221
|
+
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
|
222
|
+
border-top: 3px solid #d4dadf;
|
|
223
|
+
"
|
|
224
|
+
>
|
|
225
|
+
<h1
|
|
226
|
+
style="
|
|
227
|
+
margin: 0;
|
|
228
|
+
font-size: 32px;
|
|
229
|
+
font-weight: 700;
|
|
230
|
+
letter-spacing: -1px;
|
|
231
|
+
line-height: 48px;
|
|
232
|
+
"
|
|
233
|
+
>
|
|
234
|
+
Something Went Wrong!
|
|
235
|
+
</h1>
|
|
236
|
+
</td>
|
|
237
|
+
</tr>
|
|
238
|
+
</table>
|
|
239
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
240
|
+
</td>
|
|
241
|
+
</tr>
|
|
242
|
+
</table>
|
|
243
|
+
<![endif]-->
|
|
244
|
+
</td>
|
|
245
|
+
</tr>
|
|
246
|
+
<!-- end hero -->
|
|
247
|
+
|
|
248
|
+
<!-- start copy block -->
|
|
249
|
+
<tr>
|
|
250
|
+
<td align="center" bgcolor="#e9ecef">
|
|
251
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
252
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
253
|
+
<tr>
|
|
254
|
+
<td align="center" valign="top" width="600">
|
|
255
|
+
<![endif]-->
|
|
256
|
+
<table
|
|
257
|
+
border="0"
|
|
258
|
+
cellpadding="0"
|
|
259
|
+
cellspacing="0"
|
|
260
|
+
width="100%"
|
|
261
|
+
style="max-width: 600px"
|
|
262
|
+
>
|
|
263
|
+
<!-- start copy -->
|
|
264
|
+
<tr>
|
|
265
|
+
<td
|
|
266
|
+
align="left"
|
|
267
|
+
bgcolor="#ffffff"
|
|
268
|
+
style="
|
|
269
|
+
padding: 24px;
|
|
270
|
+
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
|
271
|
+
font-size: 16px;
|
|
272
|
+
line-height: 24px;
|
|
273
|
+
"
|
|
274
|
+
>
|
|
275
|
+
<p style="margin: 0">
|
|
276
|
+
You received this error for one of the reasons below<br /><br />
|
|
277
|
+
</p>
|
|
278
|
+
<p style="margin: 0">
|
|
279
|
+
1. You already confirmed your email <br />
|
|
280
|
+
</p>
|
|
281
|
+
<p style="margin: 0">
|
|
282
|
+
2. This link is invalid or it has expired <br />
|
|
283
|
+
</p>
|
|
284
|
+
<p style="margin: 0">3. This user does not exist <br /></p>
|
|
285
|
+
</td>
|
|
286
|
+
</tr>
|
|
287
|
+
<!-- end copy -->
|
|
288
|
+
</table>
|
|
289
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
290
|
+
</td>
|
|
291
|
+
</tr>
|
|
292
|
+
</table>
|
|
293
|
+
<![endif]-->
|
|
294
|
+
</td>
|
|
295
|
+
</tr>
|
|
296
|
+
<!-- end copy block -->
|
|
297
|
+
|
|
298
|
+
<!-- start footer -->
|
|
299
|
+
<tr>
|
|
300
|
+
<td align="center" bgcolor="#e9ecef" style="padding: 24px">
|
|
301
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
302
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
303
|
+
<tr>
|
|
304
|
+
<td align="center" valign="top" width="600">
|
|
305
|
+
<![endif]-->
|
|
306
|
+
<table
|
|
307
|
+
border="0"
|
|
308
|
+
cellpadding="0"
|
|
309
|
+
cellspacing="0"
|
|
310
|
+
width="100%"
|
|
311
|
+
style="max-width: 600px"
|
|
312
|
+
>
|
|
313
|
+
<!-- start unsubscribe -->
|
|
314
|
+
<tr>
|
|
315
|
+
<td
|
|
316
|
+
align="center"
|
|
317
|
+
bgcolor="#e9ecef"
|
|
318
|
+
style="
|
|
319
|
+
padding: 12px 24px;
|
|
320
|
+
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
|
321
|
+
font-size: 14px;
|
|
322
|
+
line-height: 20px;
|
|
323
|
+
color: #666;
|
|
324
|
+
"
|
|
325
|
+
>
|
|
326
|
+
<p style="margin: 0">Paws, 2021</p>
|
|
327
|
+
</td>
|
|
328
|
+
</tr>
|
|
329
|
+
<!-- end unsubscribe -->
|
|
330
|
+
</table>
|
|
331
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
332
|
+
</td>
|
|
333
|
+
</tr>
|
|
334
|
+
</table>
|
|
335
|
+
<![endif]-->
|
|
336
|
+
</td>
|
|
337
|
+
</tr>
|
|
338
|
+
<!-- end footer -->
|
|
339
|
+
</table>
|
|
340
|
+
<!-- end body -->
|
|
341
|
+
</body>
|
|
342
|
+
</html>
|
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
6
|
+
<title>Verify Email</title>
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
9
|
+
<style type="text/css">
|
|
10
|
+
/**
|
|
11
|
+
* Google webfonts. Recommended to include the .woff version for cross-client compatibility.
|
|
12
|
+
*/
|
|
13
|
+
@media screen {
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: "Source Sans Pro";
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
19
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff)
|
|
20
|
+
format("woff");
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@font-face {
|
|
24
|
+
font-family: "Source Sans Pro";
|
|
25
|
+
font-style: normal;
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
src: local("Source Sans Pro Bold"), local("SourceSansPro-Bold"),
|
|
28
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGFkQc6VGVFSmCnC_l7QZG60.woff)
|
|
29
|
+
format("woff");
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Avoid browser level font resizing.
|
|
35
|
+
* 1. Windows Mobile
|
|
36
|
+
* 2. iOS / OSX
|
|
37
|
+
*/
|
|
38
|
+
body,
|
|
39
|
+
table,
|
|
40
|
+
td,
|
|
41
|
+
a {
|
|
42
|
+
-ms-text-size-adjust: 100%; /* 1 */
|
|
43
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Remove extra space added to tables and cells in Outlook.
|
|
48
|
+
*/
|
|
49
|
+
table,
|
|
50
|
+
td {
|
|
51
|
+
mso-table-rspace: 0pt;
|
|
52
|
+
mso-table-lspace: 0pt;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Better fluid images in Internet Explorer.
|
|
57
|
+
*/
|
|
58
|
+
img {
|
|
59
|
+
-ms-interpolation-mode: bicubic;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Remove blue links for iOS devices.
|
|
64
|
+
*/
|
|
65
|
+
a[x-apple-data-detectors] {
|
|
66
|
+
font-family: inherit !important;
|
|
67
|
+
font-size: inherit !important;
|
|
68
|
+
font-weight: inherit !important;
|
|
69
|
+
line-height: inherit !important;
|
|
70
|
+
color: inherit !important;
|
|
71
|
+
text-decoration: none !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Fix centering issues in Android 4.4.
|
|
76
|
+
*/
|
|
77
|
+
div[style*="margin: 16px 0;"] {
|
|
78
|
+
margin: 0 !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
body {
|
|
82
|
+
width: 100% !important;
|
|
83
|
+
height: 100% !important;
|
|
84
|
+
padding: 0 !important;
|
|
85
|
+
margin: 0 !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Collapse table borders to avoid space between cells.
|
|
90
|
+
*/
|
|
91
|
+
table {
|
|
92
|
+
border-collapse: collapse !important;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
a {
|
|
96
|
+
color: #1a82e2;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
img {
|
|
100
|
+
height: auto;
|
|
101
|
+
line-height: 100%;
|
|
102
|
+
text-decoration: none;
|
|
103
|
+
border: 0;
|
|
104
|
+
outline: none;
|
|
105
|
+
}
|
|
106
|
+
.form {
|
|
107
|
+
display: flex;
|
|
108
|
+
flex-direction: column;
|
|
109
|
+
}
|
|
110
|
+
.form > input {
|
|
111
|
+
margin: 3px 6px 6px 0;
|
|
112
|
+
padding: 6px;
|
|
113
|
+
width: 35%;
|
|
114
|
+
}
|
|
115
|
+
#password {
|
|
116
|
+
border: 1px solid grey;
|
|
117
|
+
border-radius: 3px;
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
}
|
|
120
|
+
.submit {
|
|
121
|
+
cursor: pointer;
|
|
122
|
+
text-align: center;
|
|
123
|
+
border: none;
|
|
124
|
+
border-radius: 6px;
|
|
125
|
+
color: whitesmoke;
|
|
126
|
+
background-color: royalblue;
|
|
127
|
+
font-weight: bold;
|
|
128
|
+
}
|
|
129
|
+
.submit:hover {
|
|
130
|
+
background-color: rgba(65, 105, 225, 0.782);
|
|
131
|
+
}
|
|
132
|
+
.submited {
|
|
133
|
+
background-color: grey;
|
|
134
|
+
cursor: default;
|
|
135
|
+
}
|
|
136
|
+
.submited:hover {
|
|
137
|
+
background-color: grey;
|
|
138
|
+
}
|
|
139
|
+
.none {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
142
|
+
.success {
|
|
143
|
+
color: green;
|
|
144
|
+
}
|
|
145
|
+
.error {
|
|
146
|
+
color: red;
|
|
147
|
+
}
|
|
148
|
+
.red {
|
|
149
|
+
color: red !important;
|
|
150
|
+
}
|
|
151
|
+
</style>
|
|
152
|
+
</head>
|
|
153
|
+
<body style="background-color: #e9ecef">
|
|
154
|
+
<!-- start preheader -->
|
|
155
|
+
<div
|
|
156
|
+
class="preheader"
|
|
157
|
+
style="
|
|
158
|
+
display: none;
|
|
159
|
+
max-width: 0;
|
|
160
|
+
max-height: 0;
|
|
161
|
+
overflow: hidden;
|
|
162
|
+
font-size: 1px;
|
|
163
|
+
line-height: 1px;
|
|
164
|
+
color: #fff;
|
|
165
|
+
opacity: 0;
|
|
166
|
+
"
|
|
167
|
+
>
|
|
168
|
+
A preheader is the short summary text that follows the subject line when
|
|
169
|
+
an email is viewed in the inbox.
|
|
170
|
+
</div>
|
|
171
|
+
<!-- end preheader -->
|
|
172
|
+
|
|
173
|
+
<!-- start body -->
|
|
174
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
175
|
+
<!-- start logo -->
|
|
176
|
+
<tr>
|
|
177
|
+
<td align="center" bgcolor="#e9ecef">
|
|
178
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
179
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
180
|
+
<tr>
|
|
181
|
+
<td align="center" valign="top" width="600">
|
|
182
|
+
<![endif]-->
|
|
183
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;">
|
|
184
|
+
<tr>
|
|
185
|
+
<td align="center" valign="top" style="padding: 36px 24px;">
|
|
186
|
+
<a href="#" style="display: inline-block;">
|
|
187
|
+
<img src="/images/pawwhite.png" alt="Logo" border="0" width="48" style="display: block; width: 48px; max-width: 48px; min-width: 48px;">
|
|
188
|
+
</a>
|
|
189
|
+
</td>
|
|
190
|
+
</tr>
|
|
191
|
+
</table>
|
|
192
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
193
|
+
</td>
|
|
194
|
+
</tr>
|
|
195
|
+
</table>
|
|
196
|
+
<![endif]-->
|
|
197
|
+
</td>
|
|
198
|
+
</tr>
|
|
199
|
+
<!-- end logo -->
|
|
200
|
+
<!-- start hero -->
|
|
201
|
+
<tr>
|
|
202
|
+
<td align="center" bgcolor="#e9ecef">
|
|
203
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
204
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
205
|
+
<tr>
|
|
206
|
+
<td align="center" valign="top" width="600">
|
|
207
|
+
<![endif]-->
|
|
208
|
+
<table
|
|
209
|
+
border="0"
|
|
210
|
+
cellpadding="0"
|
|
211
|
+
cellspacing="0"
|
|
212
|
+
width="100%"
|
|
213
|
+
style="max-width: 600px"
|
|
214
|
+
>
|
|
215
|
+
<tr>
|
|
216
|
+
<td
|
|
217
|
+
align="left"
|
|
218
|
+
bgcolor="#ffffff"
|
|
219
|
+
style="
|
|
220
|
+
padding: 36px 24px 0;
|
|
221
|
+
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
|
222
|
+
border-top: 3px solid #d4dadf;
|
|
223
|
+
"
|
|
224
|
+
>
|
|
225
|
+
<h1
|
|
226
|
+
style="
|
|
227
|
+
margin: 0;
|
|
228
|
+
font-size: 32px;
|
|
229
|
+
font-weight: 700;
|
|
230
|
+
letter-spacing: -1px;
|
|
231
|
+
line-height: 48px;
|
|
232
|
+
"
|
|
233
|
+
>
|
|
234
|
+
Congratulations! Email Verified
|
|
235
|
+
</h1>
|
|
236
|
+
</td>
|
|
237
|
+
</tr>
|
|
238
|
+
</table>
|
|
239
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
240
|
+
</td>
|
|
241
|
+
</tr>
|
|
242
|
+
</table>
|
|
243
|
+
<![endif]-->
|
|
244
|
+
</td>
|
|
245
|
+
</tr>
|
|
246
|
+
<!-- end hero -->
|
|
247
|
+
|
|
248
|
+
<!-- start copy block -->
|
|
249
|
+
<tr>
|
|
250
|
+
<td align="center" bgcolor="#e9ecef">
|
|
251
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
252
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
253
|
+
<tr>
|
|
254
|
+
<td align="center" valign="top" width="600">
|
|
255
|
+
<![endif]-->
|
|
256
|
+
<table
|
|
257
|
+
border="0"
|
|
258
|
+
cellpadding="0"
|
|
259
|
+
cellspacing="0"
|
|
260
|
+
width="100%"
|
|
261
|
+
style="max-width: 600px"
|
|
262
|
+
>
|
|
263
|
+
<!-- start copy -->
|
|
264
|
+
<tr>
|
|
265
|
+
<td
|
|
266
|
+
align="left"
|
|
267
|
+
bgcolor="#ffffff"
|
|
268
|
+
style="
|
|
269
|
+
padding: 24px;
|
|
270
|
+
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
|
271
|
+
font-size: 16px;
|
|
272
|
+
line-height: 24px;
|
|
273
|
+
"
|
|
274
|
+
>
|
|
275
|
+
<p style="margin: 0">Thank you for choosing Paws.<br /></p>
|
|
276
|
+
<p style="margin: 0">
|
|
277
|
+
From this moment and now on you'll be able to access your
|
|
278
|
+
account
|
|
279
|
+
</p>
|
|
280
|
+
<p style="margin: 0">
|
|
281
|
+
Once again – thank you for joining Paws family!
|
|
282
|
+
</p>
|
|
283
|
+
</td>
|
|
284
|
+
</tr>
|
|
285
|
+
<!-- end copy -->
|
|
286
|
+
</table>
|
|
287
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
288
|
+
</td>
|
|
289
|
+
</tr>
|
|
290
|
+
</table>
|
|
291
|
+
<![endif]-->
|
|
292
|
+
</td>
|
|
293
|
+
</tr>
|
|
294
|
+
<!-- end copy block -->
|
|
295
|
+
|
|
296
|
+
<!-- start footer -->
|
|
297
|
+
<tr>
|
|
298
|
+
<td align="center" bgcolor="#e9ecef" style="padding: 24px">
|
|
299
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
300
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
|
|
301
|
+
<tr>
|
|
302
|
+
<td align="center" valign="top" width="600">
|
|
303
|
+
<![endif]-->
|
|
304
|
+
<table
|
|
305
|
+
border="0"
|
|
306
|
+
cellpadding="0"
|
|
307
|
+
cellspacing="0"
|
|
308
|
+
width="100%"
|
|
309
|
+
style="max-width: 600px"
|
|
310
|
+
>
|
|
311
|
+
<!-- start permission -->
|
|
312
|
+
<tr>
|
|
313
|
+
<td
|
|
314
|
+
align="center"
|
|
315
|
+
bgcolor="#e9ecef"
|
|
316
|
+
style="
|
|
317
|
+
padding: 12px 24px;
|
|
318
|
+
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
|
319
|
+
font-size: 14px;
|
|
320
|
+
line-height: 20px;
|
|
321
|
+
color: #666;
|
|
322
|
+
"
|
|
323
|
+
>
|
|
324
|
+
<p style="margin: 0">
|
|
325
|
+
You received this email because we received a request for
|
|
326
|
+
verifying your email address. If you didn't sign up for an
|
|
327
|
+
account on Paws you can safely delete this email.
|
|
328
|
+
</p>
|
|
329
|
+
</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<!-- end permission -->
|
|
332
|
+
|
|
333
|
+
<!-- start unsubscribe -->
|
|
334
|
+
<tr>
|
|
335
|
+
<td
|
|
336
|
+
align="center"
|
|
337
|
+
bgcolor="#e9ecef"
|
|
338
|
+
style="
|
|
339
|
+
padding: 12px 24px;
|
|
340
|
+
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
|
341
|
+
font-size: 14px;
|
|
342
|
+
line-height: 20px;
|
|
343
|
+
color: #666;
|
|
344
|
+
"
|
|
345
|
+
>
|
|
346
|
+
<p style="margin: 0">Paws, 2021</p>
|
|
347
|
+
</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<!-- end unsubscribe -->
|
|
350
|
+
</table>
|
|
351
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
352
|
+
</td>
|
|
353
|
+
</tr>
|
|
354
|
+
</table>
|
|
355
|
+
<![endif]-->
|
|
356
|
+
</td>
|
|
357
|
+
</tr>
|
|
358
|
+
<!-- end footer -->
|
|
359
|
+
</table>
|
|
360
|
+
<!-- end body -->
|
|
361
|
+
</body>
|
|
362
|
+
</html>
|