@7365admin1/core 2.6.4
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/.changeset/README.md +8 -0
- package/.changeset/config.json +11 -0
- package/.github/workflows/main.yml +17 -0
- package/.github/workflows/publish.yml +39 -0
- package/CHANGELOG.md +255 -0
- package/PUBLISHING.md +269 -0
- package/dist/index.d.ts +4598 -0
- package/dist/index.js +34010 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +34271 -0
- package/dist/index.mjs.map +1 -0
- package/dist/public/handlebars/forget-password.hbs +145 -0
- package/dist/public/handlebars/member-invite.hbs +143 -0
- package/dist/public/handlebars/service-provider-create-org.hbs +146 -0
- package/dist/public/handlebars/service-provider-invite.hbs +144 -0
- package/dist/public/handlebars/sign-up.hbs +142 -0
- package/dist/public/handlebars/user-invite.hbs +142 -0
- package/package.json +45 -0
- package/tsconfig.json +108 -0
- package/tsup.config.ts +10 -0
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
<div
|
|
2
|
+
style="
|
|
3
|
+
position: relative;
|
|
4
|
+
max-width: 600px;
|
|
5
|
+
margin: 0 auto;
|
|
6
|
+
background: #111426;
|
|
7
|
+
padding: 40px;
|
|
8
|
+
border-radius: 16px;
|
|
9
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
|
10
|
+
color: #ddd;
|
|
11
|
+
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
"
|
|
14
|
+
>
|
|
15
|
+
|
|
16
|
+
<img
|
|
17
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/email-background.png?quality=lossless"
|
|
18
|
+
alt=""
|
|
19
|
+
style="
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 0;
|
|
22
|
+
right: 0;
|
|
23
|
+
width: 300px;
|
|
24
|
+
height: auto;
|
|
25
|
+
z-index: 0;
|
|
26
|
+
opacity: 1;
|
|
27
|
+
"
|
|
28
|
+
/>
|
|
29
|
+
|
|
30
|
+
<div style="position: relative; z-index: 1">
|
|
31
|
+
<!-- logo -->
|
|
32
|
+
<div style="text-align: start; margin-bottom: 30px; width: 50%">
|
|
33
|
+
<img
|
|
34
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/seven365-logo.png"
|
|
35
|
+
alt="Seven365 Logo"
|
|
36
|
+
style="height: 50px"
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<!-- header -->
|
|
41
|
+
<div style="text-align: start; margin-bottom: 30px">
|
|
42
|
+
<h2 style="font-size: 36px; color: #fafafa; margin: 0; font-weight: 400">
|
|
43
|
+
Reset Your Password
|
|
44
|
+
</h2>
|
|
45
|
+
<p style="color: #fafafa; font-size: 16px; margin: 4px 0 0 0">
|
|
46
|
+
Trouble Logging In? Let’s Fix That!
|
|
47
|
+
</p>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
<!-- body -->
|
|
51
|
+
<div style="font-size: 20px; color: #fafafa; text-align: start">
|
|
52
|
+
<p><strong style="font-size: 20px">Hi {{userName}},</strong></p>
|
|
53
|
+
<p style="font-size: 16px;">
|
|
54
|
+
We received a request to reset your password for your
|
|
55
|
+
<strong>iService365</strong>
|
|
56
|
+
account. Click the button below to set a new password. This link is
|
|
57
|
+
valid for
|
|
58
|
+
<strong>{{validity}}</strong>.
|
|
59
|
+
</p>
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
<!-- cta button -->
|
|
63
|
+
<div style="text-align: left; margin: 30px 0">
|
|
64
|
+
<a
|
|
65
|
+
href="{{link}}"
|
|
66
|
+
target="_blank"
|
|
67
|
+
style="
|
|
68
|
+
background: #1e90ff;
|
|
69
|
+
color: #fff;
|
|
70
|
+
padding: 14px 38px;
|
|
71
|
+
text-decoration: none;
|
|
72
|
+
border-radius: 6px;
|
|
73
|
+
font-size: 16px;
|
|
74
|
+
display: inline-block;
|
|
75
|
+
"
|
|
76
|
+
>
|
|
77
|
+
Change Password
|
|
78
|
+
</a>
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
<!-- additional info -->
|
|
82
|
+
<div style="text-align: left; margin-bottom: 30px">
|
|
83
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
84
|
+
If you didn’t request this, you can safely ignore this email—your
|
|
85
|
+
password will remain unchanged.
|
|
86
|
+
</p>
|
|
87
|
+
|
|
88
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
89
|
+
Need help? Contact our support team at
|
|
90
|
+
<a
|
|
91
|
+
href="mailto:contact@seven365.com.sg"
|
|
92
|
+
style="color: #1e90ff"
|
|
93
|
+
>contact@seven365.com.sg</a>
|
|
94
|
+
</p>
|
|
95
|
+
|
|
96
|
+
<p style="font-size: 14px; margin-top: 30px; color: #fafafa">
|
|
97
|
+
Stay secure,<br />
|
|
98
|
+
<strong>iService365 Support Team</strong>
|
|
99
|
+
</p>
|
|
100
|
+
</div>
|
|
101
|
+
|
|
102
|
+
<!-- social icons -->
|
|
103
|
+
<div style="text-align: start; margin-top: 30px">
|
|
104
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
105
|
+
<img
|
|
106
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/facebook-icon.png"
|
|
107
|
+
alt="Facebook"
|
|
108
|
+
style="cursor: pointer"
|
|
109
|
+
/>
|
|
110
|
+
</a> -->
|
|
111
|
+
<a
|
|
112
|
+
href="https://www.linkedin.com/company/seven365-pte-ltd/"
|
|
113
|
+
style="margin: 0 10px; text-decoration: none"
|
|
114
|
+
>
|
|
115
|
+
<img
|
|
116
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/linkedin-icon.png"
|
|
117
|
+
alt="LinkedIn"
|
|
118
|
+
style="cursor: pointer"
|
|
119
|
+
/>
|
|
120
|
+
</a>
|
|
121
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
122
|
+
<img
|
|
123
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/twitter-icon.png"
|
|
124
|
+
alt="Twitter"
|
|
125
|
+
style="cursor: pointer"
|
|
126
|
+
/>
|
|
127
|
+
</a> -->
|
|
128
|
+
</div>
|
|
129
|
+
|
|
130
|
+
<!-- footer -->
|
|
131
|
+
<div
|
|
132
|
+
style="
|
|
133
|
+
margin-top: 40px;
|
|
134
|
+
font-size: 14px;
|
|
135
|
+
color: #fafafa;
|
|
136
|
+
text-align: center;
|
|
137
|
+
background-color: #343a45;
|
|
138
|
+
padding: 18px;
|
|
139
|
+
border-radius: 8px;
|
|
140
|
+
"
|
|
141
|
+
>
|
|
142
|
+
You're receiving this email because you are a subscriber of Seven365.
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
<div
|
|
2
|
+
style="
|
|
3
|
+
position: relative;
|
|
4
|
+
max-width: 600px;
|
|
5
|
+
margin: 0 auto;
|
|
6
|
+
background: #111426;
|
|
7
|
+
padding: 40px;
|
|
8
|
+
border-radius: 16px;
|
|
9
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
|
10
|
+
color: #ddd;
|
|
11
|
+
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
"
|
|
14
|
+
>
|
|
15
|
+
|
|
16
|
+
<img
|
|
17
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/email-background.png?quality=lossless"
|
|
18
|
+
alt=""
|
|
19
|
+
style="
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 0;
|
|
22
|
+
right: 0;
|
|
23
|
+
width: 300px;
|
|
24
|
+
height: auto;
|
|
25
|
+
z-index: 0;
|
|
26
|
+
opacity: 1;
|
|
27
|
+
"
|
|
28
|
+
/>
|
|
29
|
+
|
|
30
|
+
<div style="position: relative; z-index: 1">
|
|
31
|
+
<!-- logo -->
|
|
32
|
+
<div style="text-align: start; margin-bottom: 30px; width: 50%">
|
|
33
|
+
<img
|
|
34
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/seven365-logo.png"
|
|
35
|
+
alt="Seven365 Logo"
|
|
36
|
+
style="height: 50px"
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<!-- header -->
|
|
41
|
+
<div style="text-align: start; margin-bottom: 30px">
|
|
42
|
+
<h2 style="font-size: 36px; color: #fafafa; margin: 0; font-weight: 400">
|
|
43
|
+
You’ve Been Invited to Join
|
|
44
|
+
<br />
|
|
45
|
+
iService365
|
|
46
|
+
</h2>
|
|
47
|
+
</div>
|
|
48
|
+
|
|
49
|
+
<!-- body -->
|
|
50
|
+
<div style="font-size: 20px; color: #fafafa; text-align: start">
|
|
51
|
+
<p><strong style="font-size: 20px">Hi {{email}},</strong></p>
|
|
52
|
+
<p style="font-size: 16px">
|
|
53
|
+
You’ve been invited to join our platform. Since you already have an
|
|
54
|
+
account, please use the link below to accept the invitation and proceed.
|
|
55
|
+
This link is valid for
|
|
56
|
+
<strong>{{validity}}</strong>.
|
|
57
|
+
</p>
|
|
58
|
+
</div>
|
|
59
|
+
|
|
60
|
+
<!-- cta button -->
|
|
61
|
+
<div style="text-align: left; margin: 30px 0">
|
|
62
|
+
<a
|
|
63
|
+
href="{{link}}"
|
|
64
|
+
target="_blank"
|
|
65
|
+
style="
|
|
66
|
+
background: #1e90ff;
|
|
67
|
+
color: #fff;
|
|
68
|
+
padding: 14px 38px;
|
|
69
|
+
text-decoration: none;
|
|
70
|
+
border-radius: 6px;
|
|
71
|
+
font-size: 16px;
|
|
72
|
+
display: inline-block;
|
|
73
|
+
"
|
|
74
|
+
>
|
|
75
|
+
Accept Invitation
|
|
76
|
+
</a>
|
|
77
|
+
</div>
|
|
78
|
+
|
|
79
|
+
<!-- additional info -->
|
|
80
|
+
<div style="text-align: left; margin-bottom: 30px">
|
|
81
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
82
|
+
If you weren’t expecting this invitation, you can safely ignore this
|
|
83
|
+
email.
|
|
84
|
+
</p>
|
|
85
|
+
|
|
86
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
87
|
+
Need help? Contact our support team at
|
|
88
|
+
<a
|
|
89
|
+
href="mailto:contact@seven365.com.sg"
|
|
90
|
+
style="color: #1e90ff"
|
|
91
|
+
>contact@seven365.com.sg</a>
|
|
92
|
+
</p>
|
|
93
|
+
|
|
94
|
+
<p style="font-size: 14px; margin-top: 30px; color: #fafafa">
|
|
95
|
+
Welcome aboard!<br />
|
|
96
|
+
<strong>iService365 Support Team</strong>
|
|
97
|
+
</p>
|
|
98
|
+
</div>
|
|
99
|
+
|
|
100
|
+
<!-- social icons -->
|
|
101
|
+
<div style="text-align: start; margin-top: 30px">
|
|
102
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
103
|
+
<img
|
|
104
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/facebook-icon.png"
|
|
105
|
+
alt="Facebook"
|
|
106
|
+
style="cursor: pointer"
|
|
107
|
+
/>
|
|
108
|
+
</a> -->
|
|
109
|
+
<a
|
|
110
|
+
href="https://www.linkedin.com/company/seven365-pte-ltd/"
|
|
111
|
+
style="margin: 0 10px; text-decoration: none"
|
|
112
|
+
>
|
|
113
|
+
<img
|
|
114
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/linkedin-icon.png"
|
|
115
|
+
alt="LinkedIn"
|
|
116
|
+
style="cursor: pointer"
|
|
117
|
+
/>
|
|
118
|
+
</a>
|
|
119
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
120
|
+
<img
|
|
121
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/twitter-icon.png"
|
|
122
|
+
alt="Twitter"
|
|
123
|
+
style="cursor: pointer"
|
|
124
|
+
/>
|
|
125
|
+
</a> -->
|
|
126
|
+
</div>
|
|
127
|
+
|
|
128
|
+
<!-- footer -->
|
|
129
|
+
<div
|
|
130
|
+
style="
|
|
131
|
+
margin-top: 40px;
|
|
132
|
+
font-size: 14px;
|
|
133
|
+
color: #fafafa;
|
|
134
|
+
text-align: center;
|
|
135
|
+
background-color: #343a45;
|
|
136
|
+
padding: 18px;
|
|
137
|
+
border-radius: 8px;
|
|
138
|
+
"
|
|
139
|
+
>
|
|
140
|
+
You're receiving this email because you are a subscriber of Seven365.
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
143
|
+
</div>
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
<div
|
|
2
|
+
style="
|
|
3
|
+
position: relative;
|
|
4
|
+
max-width: 600px;
|
|
5
|
+
margin: 0 auto;
|
|
6
|
+
background: #111426;
|
|
7
|
+
padding: 40px;
|
|
8
|
+
border-radius: 16px;
|
|
9
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
|
10
|
+
color: #ddd;
|
|
11
|
+
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
"
|
|
14
|
+
>
|
|
15
|
+
|
|
16
|
+
<img
|
|
17
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/email-background.png?quality=lossless"
|
|
18
|
+
alt=""
|
|
19
|
+
style="
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 0;
|
|
22
|
+
right: 0;
|
|
23
|
+
width: 300px;
|
|
24
|
+
height: auto;
|
|
25
|
+
z-index: 0;
|
|
26
|
+
opacity: 1;
|
|
27
|
+
"
|
|
28
|
+
/>
|
|
29
|
+
|
|
30
|
+
<div style="position: relative; z-index: 1">
|
|
31
|
+
<!-- logo -->
|
|
32
|
+
<div style="text-align: start; margin-bottom: 30px; width: 50%">
|
|
33
|
+
<img
|
|
34
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/seven365-logo.png"
|
|
35
|
+
alt="Seven365 Logo"
|
|
36
|
+
style="height: 50px"
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<!-- header -->
|
|
41
|
+
<div style="text-align: start; margin-bottom: 30px">
|
|
42
|
+
<h2 style="font-size: 36px; color: #fafafa; margin: 0; font-weight: 400">
|
|
43
|
+
You’ve Been Invited to Join
|
|
44
|
+
<br />
|
|
45
|
+
iService365 as a Service Provider
|
|
46
|
+
</h2>
|
|
47
|
+
</div>
|
|
48
|
+
|
|
49
|
+
<!-- body -->
|
|
50
|
+
<div style="font-size: 20px; color: #fafafa; text-align: start">
|
|
51
|
+
<p><strong style="font-size: 20px">Hi {{email}},</strong></p>
|
|
52
|
+
<p style="font-size: 16px">
|
|
53
|
+
You’ve been invited to join our platform as a
|
|
54
|
+
<strong>Service Provider</strong>. To get started, please create your
|
|
55
|
+
organization. Once your organization is set up, you’ll be able to manage
|
|
56
|
+
your services and collaborate through the platform. Please use the link
|
|
57
|
+
below to create your organization and start offering your services on
|
|
58
|
+
iService365. This link is valid for
|
|
59
|
+
<strong>{{validity}}</strong>.
|
|
60
|
+
</p>
|
|
61
|
+
</div>
|
|
62
|
+
|
|
63
|
+
<!-- cta button -->
|
|
64
|
+
<div style="text-align: left; margin: 30px 0">
|
|
65
|
+
<a
|
|
66
|
+
href="{{link}}"
|
|
67
|
+
target="_blank"
|
|
68
|
+
style="
|
|
69
|
+
background: #1e90ff;
|
|
70
|
+
color: #fff;
|
|
71
|
+
padding: 14px 38px;
|
|
72
|
+
text-decoration: none;
|
|
73
|
+
border-radius: 6px;
|
|
74
|
+
font-size: 16px;
|
|
75
|
+
display: inline-block;
|
|
76
|
+
"
|
|
77
|
+
>
|
|
78
|
+
Create My Organization
|
|
79
|
+
</a>
|
|
80
|
+
</div>
|
|
81
|
+
|
|
82
|
+
<!-- additional info -->
|
|
83
|
+
<div style="text-align: left; margin-bottom: 30px">
|
|
84
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
85
|
+
If you weren’t expecting this invitation, you can safely ignore this
|
|
86
|
+
email.
|
|
87
|
+
</p>
|
|
88
|
+
|
|
89
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
90
|
+
Need help? Contact our support team at
|
|
91
|
+
<a
|
|
92
|
+
href="mailto:contact@seven365.com.sg"
|
|
93
|
+
style="color: #1e90ff"
|
|
94
|
+
>contact@seven365.com.sg</a>
|
|
95
|
+
</p>
|
|
96
|
+
|
|
97
|
+
<p style="font-size: 14px; margin-top: 30px; color: #fafafa">
|
|
98
|
+
Welcome aboard!<br />
|
|
99
|
+
<strong>iService365 Support Team</strong>
|
|
100
|
+
</p>
|
|
101
|
+
</div>
|
|
102
|
+
|
|
103
|
+
<!-- social icons -->
|
|
104
|
+
<div style="text-align: start; margin-top: 30px">
|
|
105
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
106
|
+
<img
|
|
107
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/facebook-icon.png"
|
|
108
|
+
alt="Facebook"
|
|
109
|
+
style="cursor: pointer"
|
|
110
|
+
/>
|
|
111
|
+
</a> -->
|
|
112
|
+
<a
|
|
113
|
+
href="https://www.linkedin.com/company/seven365-pte-ltd/"
|
|
114
|
+
style="margin: 0 10px; text-decoration: none"
|
|
115
|
+
>
|
|
116
|
+
<img
|
|
117
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/linkedin-icon.png"
|
|
118
|
+
alt="LinkedIn"
|
|
119
|
+
style="cursor: pointer"
|
|
120
|
+
/>
|
|
121
|
+
</a>
|
|
122
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
123
|
+
<img
|
|
124
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/twitter-icon.png"
|
|
125
|
+
alt="Twitter"
|
|
126
|
+
style="cursor: pointer"
|
|
127
|
+
/>
|
|
128
|
+
</a> -->
|
|
129
|
+
</div>
|
|
130
|
+
|
|
131
|
+
<!-- footer -->
|
|
132
|
+
<div
|
|
133
|
+
style="
|
|
134
|
+
margin-top: 40px;
|
|
135
|
+
font-size: 14px;
|
|
136
|
+
color: #fafafa;
|
|
137
|
+
text-align: center;
|
|
138
|
+
background-color: #343a45;
|
|
139
|
+
padding: 18px;
|
|
140
|
+
border-radius: 8px;
|
|
141
|
+
"
|
|
142
|
+
>
|
|
143
|
+
You're receiving this email because you are a subscriber of Seven365.
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
<div
|
|
2
|
+
style="
|
|
3
|
+
position: relative;
|
|
4
|
+
max-width: 600px;
|
|
5
|
+
margin: 0 auto;
|
|
6
|
+
background: #111426;
|
|
7
|
+
padding: 40px;
|
|
8
|
+
border-radius: 16px;
|
|
9
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
|
10
|
+
color: #ddd;
|
|
11
|
+
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
"
|
|
14
|
+
>
|
|
15
|
+
|
|
16
|
+
<img
|
|
17
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/email-background.png?quality=lossless"
|
|
18
|
+
alt=""
|
|
19
|
+
style="
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 0;
|
|
22
|
+
right: 0;
|
|
23
|
+
width: 300px;
|
|
24
|
+
height: auto;
|
|
25
|
+
z-index: 0;
|
|
26
|
+
opacity: 1;
|
|
27
|
+
"
|
|
28
|
+
/>
|
|
29
|
+
|
|
30
|
+
<div style="position: relative; z-index: 1">
|
|
31
|
+
<!-- logo -->
|
|
32
|
+
<div style="text-align: start; margin-bottom: 30px; width: 50%">
|
|
33
|
+
<img
|
|
34
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/seven365-logo.png"
|
|
35
|
+
alt="Seven365 Logo"
|
|
36
|
+
style="height: 50px"
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<!-- header -->
|
|
41
|
+
<div style="text-align: start; margin-bottom: 30px">
|
|
42
|
+
<h2 style="font-size: 36px; color: #fafafa; margin: 0; font-weight: 400">
|
|
43
|
+
You’ve Been Invited to Join
|
|
44
|
+
<br />
|
|
45
|
+
iService365 as a Service Provider
|
|
46
|
+
</h2>
|
|
47
|
+
</div>
|
|
48
|
+
|
|
49
|
+
<!-- body -->
|
|
50
|
+
<div style="font-size: 20px; color: #fafafa; text-align: start">
|
|
51
|
+
<p><strong style="font-size: 20px">Hi {{email}},</strong></p>
|
|
52
|
+
<p style="font-size: 16px">
|
|
53
|
+
You’ve been invited to join our platform as a
|
|
54
|
+
<strong>Service Provider</strong>. Please use the link below to complete
|
|
55
|
+
your registration and start offering your services on iService365. This
|
|
56
|
+
link is valid for
|
|
57
|
+
<strong>{{validity}}</strong>.
|
|
58
|
+
</p>
|
|
59
|
+
</div>
|
|
60
|
+
|
|
61
|
+
<!-- cta button -->
|
|
62
|
+
<div style="text-align: left; margin: 30px 0">
|
|
63
|
+
<a
|
|
64
|
+
href="{{link}}"
|
|
65
|
+
target="_blank"
|
|
66
|
+
style="
|
|
67
|
+
background: #1e90ff;
|
|
68
|
+
color: #fff;
|
|
69
|
+
padding: 14px 38px;
|
|
70
|
+
text-decoration: none;
|
|
71
|
+
border-radius: 6px;
|
|
72
|
+
font-size: 16px;
|
|
73
|
+
display: inline-block;
|
|
74
|
+
"
|
|
75
|
+
>
|
|
76
|
+
Accept Invitation
|
|
77
|
+
</a>
|
|
78
|
+
</div>
|
|
79
|
+
|
|
80
|
+
<!-- additional info -->
|
|
81
|
+
<div style="text-align: left; margin-bottom: 30px">
|
|
82
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
83
|
+
If you weren’t expecting this invitation, you can safely ignore this
|
|
84
|
+
email.
|
|
85
|
+
</p>
|
|
86
|
+
|
|
87
|
+
<p style="font-size: 14px; color: #fafafa; margin-bottom: 16px">
|
|
88
|
+
Need help? Contact our support team at
|
|
89
|
+
<a
|
|
90
|
+
href="mailto:contact@seven365.com.sg"
|
|
91
|
+
style="color: #1e90ff"
|
|
92
|
+
>contact@seven365.com.sg</a>
|
|
93
|
+
</p>
|
|
94
|
+
|
|
95
|
+
<p style="font-size: 14px; margin-top: 30px; color: #fafafa">
|
|
96
|
+
Welcome aboard!<br />
|
|
97
|
+
<strong>iService365 Support Team</strong>
|
|
98
|
+
</p>
|
|
99
|
+
</div>
|
|
100
|
+
|
|
101
|
+
<!-- social icons -->
|
|
102
|
+
<div style="text-align: start; margin-top: 30px">
|
|
103
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
104
|
+
<img
|
|
105
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/facebook-icon.png"
|
|
106
|
+
alt="Facebook"
|
|
107
|
+
style="cursor: pointer"
|
|
108
|
+
/>
|
|
109
|
+
</a> -->
|
|
110
|
+
<a
|
|
111
|
+
href="https://www.linkedin.com/company/seven365-pte-ltd/"
|
|
112
|
+
style="margin: 0 10px; text-decoration: none"
|
|
113
|
+
>
|
|
114
|
+
<img
|
|
115
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/linkedin-icon.png"
|
|
116
|
+
alt="LinkedIn"
|
|
117
|
+
style="cursor: pointer"
|
|
118
|
+
/>
|
|
119
|
+
</a>
|
|
120
|
+
<!-- <a href="#" style="margin: 0 10px; text-decoration: none">
|
|
121
|
+
<img
|
|
122
|
+
src="https://seven365-storage.sgp1.cdn.digitaloceanspaces.com/seven365-public/images/twitter-icon.png"
|
|
123
|
+
alt="Twitter"
|
|
124
|
+
style="cursor: pointer"
|
|
125
|
+
/>
|
|
126
|
+
</a> -->
|
|
127
|
+
</div>
|
|
128
|
+
|
|
129
|
+
<!-- footer -->
|
|
130
|
+
<div
|
|
131
|
+
style="
|
|
132
|
+
margin-top: 40px;
|
|
133
|
+
font-size: 14px;
|
|
134
|
+
color: #fafafa;
|
|
135
|
+
text-align: center;
|
|
136
|
+
background-color: #343a45;
|
|
137
|
+
padding: 18px;
|
|
138
|
+
border-radius: 8px;
|
|
139
|
+
"
|
|
140
|
+
>
|
|
141
|
+
You're receiving this email because you are a subscriber of Seven365.
|
|
142
|
+
</div>
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|