@solidstarters/solid-core 1.2.92 → 1.2.93
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.
- package/# Password field.md +8 -0
- package/dist/controllers/import-transaction.controller.d.ts +2 -1
- package/dist/controllers/import-transaction.controller.d.ts.map +1 -1
- package/dist/controllers/import-transaction.controller.js +16 -4
- package/dist/controllers/import-transaction.controller.js.map +1 -1
- package/dist/dtos/create-menu-item-metadata.dto.d.ts +2 -1
- package/dist/dtos/create-menu-item-metadata.dto.d.ts.map +1 -1
- package/dist/dtos/create-menu-item-metadata.dto.js +22 -3
- package/dist/dtos/create-menu-item-metadata.dto.js.map +1 -1
- package/dist/dtos/create-role-metadata.dto.d.ts.map +1 -1
- package/dist/dtos/create-role-metadata.dto.js +11 -0
- package/dist/dtos/create-role-metadata.dto.js.map +1 -1
- package/dist/dtos/update-menu-item-metadata.dto.d.ts +2 -1
- package/dist/dtos/update-menu-item-metadata.dto.d.ts.map +1 -1
- package/dist/dtos/update-menu-item-metadata.dto.js +24 -5
- package/dist/dtos/update-menu-item-metadata.dto.js.map +1 -1
- package/dist/dtos/update-role-metadata.dto.d.ts.map +1 -1
- package/dist/dtos/update-role-metadata.dto.js +12 -1
- package/dist/dtos/update-role-metadata.dto.js.map +1 -1
- package/dist/entities/menu-item-metadata.entity.d.ts +2 -1
- package/dist/entities/menu-item-metadata.entity.d.ts.map +1 -1
- package/dist/entities/menu-item-metadata.entity.js +13 -8
- package/dist/entities/menu-item-metadata.entity.js.map +1 -1
- package/dist/seeders/seed-data/solid-core-metadata.json +31 -0
- package/dist/services/authentication.service.d.ts.map +1 -1
- package/dist/services/authentication.service.js +8 -3
- package/dist/services/authentication.service.js.map +1 -1
- package/dist/services/crud.service.js +1 -1
- package/dist/services/crud.service.js.map +1 -1
- package/dist/services/import-transaction.service.d.ts +19 -6
- package/dist/services/import-transaction.service.d.ts.map +1 -1
- package/dist/services/import-transaction.service.js +214 -87
- package/dist/services/import-transaction.service.js.map +1 -1
- package/dist/services/menu-item-metadata.service.d.ts.map +1 -1
- package/dist/services/menu-item-metadata.service.js +1 -0
- package/dist/services/menu-item-metadata.service.js.map +1 -1
- package/dist/services/setting.service.d.ts.map +1 -1
- package/dist/services/setting.service.js +4 -2
- package/dist/services/setting.service.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/controllers/import-transaction.controller.ts +9 -3
- package/src/dtos/create-menu-item-metadata.dto.ts +21 -13
- package/src/dtos/create-role-metadata.dto.ts +48 -45
- package/src/dtos/update-menu-item-metadata.dto.ts +23 -16
- package/src/dtos/update-role-metadata.dto.ts +49 -47
- package/src/entities/menu-item-metadata.entity.ts +14 -14
- package/src/seeders/seed-data/email-templates/forgot-password.handlebars.html +134 -154
- package/src/seeders/seed-data/email-templates/on-force-password-change.handlebars.html +141 -195
- package/src/seeders/seed-data/email-templates/otp-on-login.handlebars.html +130 -144
- package/src/seeders/seed-data/email-templates/otp-on-register.handlebars.html +131 -145
- package/src/seeders/seed-data/solid-core-metadata.json +31 -0
- package/src/services/authentication.service.ts +8 -3
- package/src/services/crud.service.ts +1 -1
- package/src/services/import-transaction.service.ts +313 -121
- package/src/services/menu-item-metadata.service.ts +2 -0
- package/src/services/pending_import_issues +3 -0
- package/src/services/setting.service.ts +4 -2
|
@@ -1,210 +1,156 @@
|
|
|
1
|
-
<!DOCTYPE html
|
|
2
|
-
|
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
4
3
|
|
|
5
4
|
<head>
|
|
6
|
-
<meta
|
|
7
|
-
<
|
|
8
|
-
<
|
|
9
|
-
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<title>Welcome Email</title>
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
|
|
9
|
+
<style>
|
|
10
|
+
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700&display=swap");
|
|
11
|
+
|
|
12
|
+
body {
|
|
13
|
+
margin: 0;
|
|
14
|
+
padding: 0;
|
|
15
|
+
background-color: #f4f4f7;
|
|
16
|
+
font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
|
|
17
|
+
color: #333;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.email-wrapper {
|
|
21
|
+
max-width: 600px;
|
|
22
|
+
margin: 0 auto;
|
|
23
|
+
padding: 20px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.logo {
|
|
27
|
+
text-align: center;
|
|
28
|
+
margin-bottom: 20px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.logo img {
|
|
32
|
+
height: 50px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.content-box {
|
|
36
|
+
background-color: #ffffff;
|
|
37
|
+
padding: 40px;
|
|
38
|
+
border-radius: 8px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.title {
|
|
42
|
+
font-size: 22px;
|
|
43
|
+
margin-bottom: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.intro {
|
|
47
|
+
font-size: 16px;
|
|
48
|
+
line-height: 1.6;
|
|
49
|
+
margin: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.credentials {
|
|
53
|
+
background-color: #f9f9f9;
|
|
54
|
+
padding: 15px;
|
|
55
|
+
border-radius: 5px;
|
|
56
|
+
margin-top: 20px;
|
|
57
|
+
margin-bottom: 30px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.credentials p {
|
|
61
|
+
margin: 0 0 10px;
|
|
62
|
+
font-size: 16px;
|
|
63
|
+
}
|
|
10
64
|
|
|
11
|
-
|
|
12
|
-
|
|
65
|
+
.button-container {
|
|
66
|
+
text-align: center;
|
|
67
|
+
margin-bottom: 30px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.button {
|
|
71
|
+
display: inline-block;
|
|
72
|
+
padding: 12px 24px;
|
|
73
|
+
background-color: #722ED1;
|
|
74
|
+
color: #ffffff;
|
|
75
|
+
text-decoration: none;
|
|
76
|
+
font-weight: bold;
|
|
77
|
+
border-radius: 5px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.footer-text {
|
|
81
|
+
font-size: 16px;
|
|
82
|
+
line-height: 1.6;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.footer {
|
|
86
|
+
text-align: center;
|
|
87
|
+
font-size: 12px;
|
|
88
|
+
color: #6b6e76;
|
|
89
|
+
margin-top: 40px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@media only screen and (max-width: 600px) {
|
|
93
|
+
.email-wrapper {
|
|
13
94
|
width: 100% !important;
|
|
95
|
+
padding: 20px 0 !important;
|
|
96
|
+
margin: 0;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.content-box {
|
|
100
|
+
padding: 20px !important;
|
|
101
|
+
border-radius: 0;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.title {
|
|
105
|
+
font-size: 18px !important;
|
|
14
106
|
}
|
|
15
|
-
}
|
|
16
107
|
|
|
17
|
-
@media only screen and (max-width: 500px) {
|
|
18
108
|
.button {
|
|
19
|
-
width: 100% !important;
|
|
109
|
+
/* width: 100% !important; */
|
|
110
|
+
padding: 10px !important;
|
|
111
|
+
font-size: 14px;
|
|
20
112
|
}
|
|
21
113
|
}
|
|
22
114
|
</style>
|
|
23
115
|
</head>
|
|
24
116
|
|
|
25
|
-
<body
|
|
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
|
-
bgcolor="#FFF">
|
|
63
|
-
<table class="email-body_inner" align="center" width="600" cellpadding="0" cellspacing="0"
|
|
64
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; width: 600px; margin: 0 auto; padding: 0; background-color: #fff;">
|
|
65
|
-
<!-- Body content -->
|
|
66
|
-
<tr>
|
|
67
|
-
<td class="content-cell"
|
|
68
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 35px;">
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
<p
|
|
72
|
-
style="margin-top: 0; color: #333; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; text-align: center;">
|
|
73
|
-
Congratulations on successfully completing the SRMD Courses. To support you on your journey ahead, we are pleased to offer you complimentary access to a 'Tracking Portal'. To begin, simply log in using the credentials provided below:
|
|
74
|
-
</p>
|
|
75
|
-
<!-- <p
|
|
76
|
-
style="margin-top: 0; color: #74787E; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
77
|
-
Welcome to {{ solidAppName }}! We're very excited to have you on board.</p> -->
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
<!-- Dictionary -->
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
<!-- Table -->
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
<!-- Action -->
|
|
89
|
-
|
|
90
|
-
<!-- <p
|
|
91
|
-
style="margin-top: 0; color: #74787E; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
92
|
-
To get started with {{ solidAppName }}, please login to your account by
|
|
93
|
-
clicking <a href="{{ frontendLoginPageUrl }}">this link</a>.</p> -->
|
|
94
|
-
<table class="body-action" align="center" cellpadding="0" cellspacing="0"
|
|
95
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; width: 100%; margin: 30px auto; padding: 0; text-align: center;">
|
|
96
|
-
<tr>
|
|
97
|
-
<td align="center"
|
|
98
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; text-align: center;">
|
|
99
|
-
<a
|
|
100
|
-
style="
|
|
101
|
-
display: inline-block;
|
|
102
|
-
background-color: #E48C74;
|
|
103
|
-
color: #fff;
|
|
104
|
-
text-decoration: none;
|
|
105
|
-
padding: 12px 24px;
|
|
106
|
-
font-weight: 700;
|
|
107
|
-
font-size: 14px;
|
|
108
|
-
line-height: normal;
|
|
109
|
-
border-radius: 8px; /* Rounded corners */
|
|
110
|
-
text-align: center;
|
|
111
|
-
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); /* Shadow for better design */
|
|
112
|
-
"
|
|
113
|
-
href="{{ frontendLoginPageUrl }}">
|
|
114
|
-
Explore the Tracking Portal
|
|
115
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="14"
|
|
116
|
-
viewBox="0 0 15 14" fill="none">
|
|
117
|
-
<path d="M9.83398 7L6.33398 10.5V3.5L9.83398 7Z" fill="white" />
|
|
118
|
-
</svg>
|
|
119
|
-
</a>
|
|
120
|
-
</td>
|
|
121
|
-
</tr>
|
|
122
|
-
</table>
|
|
123
|
-
<!--[if mso]>
|
|
124
|
-
<center>
|
|
125
|
-
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="" style="height: 45px; v-text-anchor: middle; width: 200px;" arcsize="10%" stroke="f" fillcolor="#22BC66">
|
|
126
|
-
<w:anchorlock/>
|
|
127
|
-
<center style="color: #ffffff; font-family: sans-serif; font-size: 15px;">
|
|
128
|
-
321455
|
|
129
|
-
</center>
|
|
130
|
-
</v:roundrect>
|
|
131
|
-
</center>
|
|
132
|
-
<![endif]-->
|
|
133
|
-
<![if !mso]>
|
|
134
|
-
<div style="background-color: rgba(249, 209, 160, 0.30); padding: 0.5px;">
|
|
135
|
-
<table class="body-action" align="center" cellpadding="0" cellspacing="0"
|
|
136
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; width: 100%; margin: 30px auto; padding: 0; text-align: center;"
|
|
137
|
-
width="100%;">
|
|
138
|
-
<tr>
|
|
139
|
-
<td align="center"
|
|
140
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 1.3rem; color: #333; font-weight: 700;">
|
|
141
|
-
Username:
|
|
142
|
-
</td>
|
|
143
|
-
<td align="center"
|
|
144
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 1.3rem; color: #333; font-weight: 700;">
|
|
145
|
-
{{ userName }}
|
|
146
|
-
</td>
|
|
147
|
-
</tr>
|
|
148
|
-
<tr>
|
|
149
|
-
<td align="center"
|
|
150
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 1.3rem; color: #333; font-weight: 700;">
|
|
151
|
-
Password:
|
|
152
|
-
</td>
|
|
153
|
-
<td align="center"
|
|
154
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 1.3rem; color: #333; font-weight: 700;">
|
|
155
|
-
{{ password }}
|
|
156
|
-
</td>
|
|
157
|
-
</tr>
|
|
158
|
-
</table>
|
|
159
|
-
</div>
|
|
160
|
-
<![endif]>
|
|
161
|
-
|
|
162
|
-
<!-- Support for Gmail Go-To Actions -->
|
|
163
|
-
<p
|
|
164
|
-
style="margin-top: 30px; color: #74787E; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; text-align: center; font-size: 1.2rem; font-weight: 400; color: #333;">
|
|
165
|
-
Incase of any queries or support, please reach out to us at <span style="color: #EBB26F; font-weight: 600;">support@srmdcourses.org</span>
|
|
166
|
-
</p>
|
|
167
|
-
|
|
168
|
-
<!-- <p
|
|
169
|
-
style="margin-top: 0; color: #333; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
170
|
-
Yours truly,
|
|
171
|
-
<br>
|
|
172
|
-
{{ solidAppName }}
|
|
173
|
-
</p> -->
|
|
174
|
-
|
|
175
|
-
</td>
|
|
176
|
-
</tr>
|
|
177
|
-
</table>
|
|
178
|
-
</td>
|
|
179
|
-
</tr>
|
|
180
|
-
|
|
181
|
-
<tr>
|
|
182
|
-
<td
|
|
183
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
184
|
-
<table class="email-footer" align="center" width="600" cellpadding="0" cellspacing="0"
|
|
185
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; width: 600px; margin: 0 auto; padding: 0; text-align: center;">
|
|
186
|
-
<tr>
|
|
187
|
-
<td class="content-cell"
|
|
188
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 35px;">
|
|
189
|
-
<h1
|
|
190
|
-
style="margin-top: 0px; color: #E48C74; font-size: 1.5rem; font-weight: 700; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; text-align: center;">
|
|
191
|
-
“Miss anything for your best life, but don’t miss your best life for anything!”
|
|
192
|
-
</h1>
|
|
193
|
-
<p
|
|
194
|
-
style="text-align: center;margin-top: 0; color: #333; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
195
|
-
~ Pujya Gurudevshri
|
|
196
|
-
</p>
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
</td>
|
|
200
|
-
</tr>
|
|
201
|
-
</table>
|
|
202
|
-
</td>
|
|
203
|
-
</tr>
|
|
204
|
-
</table>
|
|
205
|
-
</td>
|
|
206
|
-
</tr>
|
|
207
|
-
</table>
|
|
117
|
+
<body>
|
|
118
|
+
<div class="email-wrapper">
|
|
119
|
+
<!-- Logo outside the box -->
|
|
120
|
+
<div class="logo">
|
|
121
|
+
<img src="https://yourcompany.com/logo.png" alt="Company Logo" />
|
|
122
|
+
</div>
|
|
123
|
+
|
|
124
|
+
<!-- Content Box -->
|
|
125
|
+
<div class="content-box">
|
|
126
|
+
<h2 class="title">Hi, {{ fullName }} !</h2>
|
|
127
|
+
<p class="intro">
|
|
128
|
+
Welcome to {{ solidAppName }}
|
|
129
|
+
</p>
|
|
130
|
+
<p class="intro">
|
|
131
|
+
We're excited to have you on board. Here are your login details:
|
|
132
|
+
</p>
|
|
133
|
+
|
|
134
|
+
<div class="credentials">
|
|
135
|
+
<p><strong>Email:</strong> {{ email }}</p>
|
|
136
|
+
<p><strong>Password:</strong> {{ password }}</p>
|
|
137
|
+
</div>
|
|
138
|
+
|
|
139
|
+
<div class="button-container">
|
|
140
|
+
<a href="{{ frontendLoginPageUrl }}" class="button" target="_blank">
|
|
141
|
+
Login to Your Account
|
|
142
|
+
</a>
|
|
143
|
+
</div>
|
|
144
|
+
|
|
145
|
+
<p class="footer-text">
|
|
146
|
+
If you have any questions, just reply to this email—we’re happy to help.
|
|
147
|
+
</p>
|
|
148
|
+
</div>
|
|
149
|
+
|
|
150
|
+
<div class="footer">
|
|
151
|
+
© 2025 <a href="{{ solidAppWebsiteUrl }}" target="_blank">{{ solidAppName }}</a>. All rights reserved.
|
|
152
|
+
</div>
|
|
153
|
+
</div>
|
|
208
154
|
</body>
|
|
209
155
|
|
|
210
156
|
</html>
|
|
@@ -1,159 +1,145 @@
|
|
|
1
|
-
<!DOCTYPE html
|
|
2
|
-
|
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
4
3
|
|
|
5
4
|
<head>
|
|
6
|
-
<meta
|
|
7
|
-
<
|
|
8
|
-
<
|
|
9
|
-
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<title>Reset Your Password</title>
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
|
|
9
|
+
<style>
|
|
10
|
+
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700&display=swap");
|
|
11
|
+
|
|
12
|
+
body {
|
|
13
|
+
margin: 0;
|
|
14
|
+
padding: 0;
|
|
15
|
+
background-color: #f4f4f7;
|
|
16
|
+
font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
|
|
17
|
+
color: #333;
|
|
18
|
+
}
|
|
10
19
|
|
|
11
|
-
|
|
12
|
-
|
|
20
|
+
.email-wrapper {
|
|
21
|
+
max-width: 600px;
|
|
22
|
+
margin: 0 auto;
|
|
23
|
+
padding: 20px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.logo {
|
|
27
|
+
text-align: center;
|
|
28
|
+
margin-bottom: 20px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.logo img {
|
|
32
|
+
height: 50px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.content-box {
|
|
36
|
+
background-color: #ffffff;
|
|
37
|
+
padding: 40px;
|
|
38
|
+
border-radius: 8px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.title {
|
|
42
|
+
font-size: 22px;
|
|
43
|
+
margin-bottom: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.intro {
|
|
47
|
+
font-size: 16px;
|
|
48
|
+
line-height: 1.6;
|
|
49
|
+
margin: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.credentials {
|
|
53
|
+
background-color: #f9f9f9;
|
|
54
|
+
padding: 15px;
|
|
55
|
+
border-radius: 5px;
|
|
56
|
+
margin-bottom: 30px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.credentials p {
|
|
60
|
+
margin: 0 0 10px;
|
|
61
|
+
font-size: 16px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.button-container {
|
|
65
|
+
text-align: center;
|
|
66
|
+
margin-bottom: 30px;
|
|
67
|
+
margin-top: 20px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.button {
|
|
71
|
+
display: inline-block;
|
|
72
|
+
padding: 12px 24px;
|
|
73
|
+
background-color: #722ED1;
|
|
74
|
+
color: #ffffff;
|
|
75
|
+
text-decoration: none;
|
|
76
|
+
font-weight: bold;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.footer-text {
|
|
80
|
+
font-size: 16px;
|
|
81
|
+
line-height: 1.6;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.footer {
|
|
85
|
+
text-align: center;
|
|
86
|
+
font-size: 12px;
|
|
87
|
+
color: #6b6e76;
|
|
88
|
+
margin-top: 40px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@media only screen and (max-width: 600px) {
|
|
92
|
+
.email-wrapper {
|
|
13
93
|
width: 100% !important;
|
|
94
|
+
padding: 20px 0 !important;
|
|
95
|
+
margin: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.content-box {
|
|
99
|
+
padding: 20px !important;
|
|
100
|
+
border-radius: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.title {
|
|
104
|
+
font-size: 18px !important;
|
|
14
105
|
}
|
|
15
|
-
}
|
|
16
106
|
|
|
17
|
-
@media only screen and (max-width: 500px) {
|
|
18
107
|
.button {
|
|
19
|
-
width: 100% !important;
|
|
108
|
+
/* width: 100% !important; */
|
|
109
|
+
padding: 10px !important;
|
|
110
|
+
font-size: 14px;
|
|
20
111
|
}
|
|
21
112
|
}
|
|
22
113
|
</style>
|
|
23
114
|
</head>
|
|
24
115
|
|
|
25
|
-
<body
|
|
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
|
-
bgcolor="#FFF">
|
|
53
|
-
<table class="email-body_inner" align="center" width="570" cellpadding="0" cellspacing="0"
|
|
54
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; width: 570px; margin: 0 auto; padding: 0;">
|
|
55
|
-
<!-- Body content -->
|
|
56
|
-
<tr>
|
|
57
|
-
<td class="content-cell"
|
|
58
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 35px;">
|
|
59
|
-
|
|
60
|
-
<h1
|
|
61
|
-
style="margin-top: 0; color: #2F3133; font-size: 19px; font-weight: bold; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
62
|
-
Hi {{ firstName }},</h1>
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
<p
|
|
66
|
-
style="margin-top: 0; color: #74787E; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
67
|
-
Welcome to {{ solidAppName }}!</p>
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
<!-- Dictionary -->
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
<!-- Table -->
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
<!-- Action -->
|
|
79
|
-
|
|
80
|
-
<p
|
|
81
|
-
style="margin-top: 0; color: #74787E; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
82
|
-
Login to {{ solidAppName }}, using the below verification code.</p>
|
|
83
|
-
<!--[if mso]>
|
|
84
|
-
<center>
|
|
85
|
-
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="" style="height: 45px; v-text-anchor: middle; width: 200px;" arcsize="10%" stroke="f" fillcolor="#22BC66">
|
|
86
|
-
<w:anchorlock/>
|
|
87
|
-
<center style="color: #ffffff; font-family: sans-serif; font-size: 15px;">
|
|
88
|
-
321455
|
|
89
|
-
</center>
|
|
90
|
-
</v:roundrect>
|
|
91
|
-
</center>
|
|
92
|
-
<![endif]-->
|
|
93
|
-
<![if !mso]>
|
|
94
|
-
<table class="body-action" align="center" cellpadding="0" cellspacing="0"
|
|
95
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; width: 100%; margin: 30px auto; padding: 0; text-align: center;"
|
|
96
|
-
width="100%">
|
|
97
|
-
<tr>
|
|
98
|
-
<td align="center"
|
|
99
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
100
|
-
<a href class="button" target="_blank"
|
|
101
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; display: inline-block; width: 200px; border-radius: 3px; color: #ffffff; font-size: 15px; line-height: 45px; text-align: center; text-decoration: none; -webkit-text-size-adjust: none; mso-hide: all; background-color: #22BC66;">
|
|
102
|
-
{{ emailVerificationTokenOnLogin }}
|
|
103
|
-
</a>
|
|
104
|
-
</td>
|
|
105
|
-
</tr>
|
|
106
|
-
</table>
|
|
107
|
-
<![endif]>
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
<!-- Support for Gmail Go-To Actions -->
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
<p
|
|
115
|
-
style="margin-top: 0; color: #74787E; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
116
|
-
Need help, or have questions? Just reply to this email, we'd love to help.
|
|
117
|
-
</p>
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
<p
|
|
122
|
-
style="margin-top: 0; color: #74787E; font-size: 16px; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
123
|
-
Yours truly,
|
|
124
|
-
<br>
|
|
125
|
-
{{ solidAppName }}
|
|
126
|
-
</p>
|
|
127
|
-
|
|
128
|
-
</td>
|
|
129
|
-
</tr>
|
|
130
|
-
</table>
|
|
131
|
-
</td>
|
|
132
|
-
</tr>
|
|
133
|
-
|
|
134
|
-
<tr>
|
|
135
|
-
<td
|
|
136
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">
|
|
137
|
-
<table class="email-footer" align="center" width="570" cellpadding="0" cellspacing="0"
|
|
138
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; width: 570px; margin: 0 auto; padding: 0; text-align: center;">
|
|
139
|
-
<tr>
|
|
140
|
-
<td class="content-cell"
|
|
141
|
-
style="font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; padding: 35px;">
|
|
142
|
-
<p class="sub center"
|
|
143
|
-
style="margin-top: 0; line-height: 1.5em; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box; color: #AEAEAE; font-size: 12px; text-align: center;">
|
|
144
|
-
© 2024 <a href="{{ solidAppWebsiteUrl }}" target="_blank"
|
|
145
|
-
style="color: #3869D4; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; -webkit-box-sizing: border-box; box-sizing: border-box;">Example
|
|
146
|
-
Solid App</a>. All rights reserved.
|
|
147
|
-
</p>
|
|
148
|
-
</td>
|
|
149
|
-
</tr>
|
|
150
|
-
</table>
|
|
151
|
-
</td>
|
|
152
|
-
</tr>
|
|
153
|
-
</table>
|
|
154
|
-
</td>
|
|
155
|
-
</tr>
|
|
156
|
-
</table>
|
|
116
|
+
<body>
|
|
117
|
+
<div class="email-wrapper">
|
|
118
|
+
<!-- Logo outside the box -->
|
|
119
|
+
<div class="logo">
|
|
120
|
+
<img src="https://yourcompany.com/logo.png" alt="Company Logo" />
|
|
121
|
+
</div>
|
|
122
|
+
|
|
123
|
+
<!-- Content Box -->
|
|
124
|
+
<div class="content-box">
|
|
125
|
+
<h2 class="title">Hi, {{ fullName }}</h2>
|
|
126
|
+
<p class="intro">
|
|
127
|
+
Login to {{ solidAppName }}, using the below verification code.
|
|
128
|
+
</p>
|
|
129
|
+
<div class="button-container">
|
|
130
|
+
<div class="button">
|
|
131
|
+
{{ emailVerificationTokenOnLogin }}
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
<p class="footer-text">
|
|
135
|
+
If you have any questions, just reply to this email—we’re happy to help.
|
|
136
|
+
</p>
|
|
137
|
+
</div>
|
|
138
|
+
|
|
139
|
+
<div class="footer">
|
|
140
|
+
© 2025 <a href="{{ solidAppWebsiteUrl }}" target="_blank">{{ solidAppName }}</a>. All rights reserved.
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
157
143
|
</body>
|
|
158
144
|
|
|
159
145
|
</html>
|