-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
175 lines (175 loc) · 6.14 KB
/
index.html
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HNG Boilerplate Email Templates</title>
<link
href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body class="bg-gray-100 text-gray-900 min-h-screen">
<header class="bg-black text-white p-7 text-center">
<h1 class="text-3xl font-bold">HNG Boilerplate Email Templates</h1>
</header>
<main class="container mx-auto p-8">
<section class="mb-8">
<h2 class="text-2xl font-semibold mb-4">About the Project</h2>
<p class="mb-4">
This project contains a collection of boilerplate email templates
designed for various use cases within the HNG 12 boilerplate project.
These templates facilitate the seamless integration of email
functionality for tasks such as account activation, password reset,
subscription management, and more.
</p>
<p>
Below you will find links to each of the email templates included in
this project. Click on a link to view the corresponding template.
</p>
</section>
<section>
<h2 class="text-2xl font-semibold mb-4">Email Templates</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
<div class="p-4 bg-white rounded shadow">
<a
href="Account-Deactivation.html"
class="text-blue-600 hover:underline"
>Account Deactivation</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Account-Inactivity-Deactivation.html"
class="text-blue-600 hover:underline"
>Account Inactivity Deactivation</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Activate-Account.html"
class="text-blue-600 hover:underline"
>Activate Account</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a href="Activation-Link.html" class="text-blue-600 hover:underline"
>Activation Link</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a href="Active-Account.html" class="text-blue-600 hover:underline"
>Active Account</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a href="Email-Complete.html" class="text-blue-600 hover:underline"
>Email Complete</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Email-Verification.html"
class="text-blue-600 hover:underline"
>Email Verification</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a href="Invoice.html" class="text-blue-600 hover:underline"
>Invoice</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="New-Activation-Link.html"
class="text-blue-600 hover:underline"
>New Activation Link</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="New-Feature-Announcement.html"
class="text-blue-600 hover:underline"
>New Feature Announcement</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a href="Newsletter.html" class="text-blue-600 hover:underline"
>Newsletter</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Password-Reset-Complete-Template.html"
class="text-blue-600 hover:underline"
>Password Reset Complete</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a href="Payment-receipt.html" class="text-blue-600 hover:underline"
>Payment Receipt</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Reset-Password-Template.html"
class="text-blue-600 hover:underline"
>Reset Password</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Subscription-Cancellation-Confirmation.html"
class="text-blue-600 hover:underline"
>Subscription Cancellation Confirmation</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Subscription-Confirmation.html"
class="text-blue-600 hover:underline"
>Subscription Confirmation</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Subscription-Renewal-Disabled.html"
class="text-blue-600 hover:underline"
>Subscription Renewal Disabled</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Subscription-Renewal-Failed.html"
class="text-blue-600 hover:underline"
>Subscription Renewal Failed</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Subscription-Renewal-Reminder.html"
class="text-blue-600 hover:underline"
>Subscription Renewal Reminder</a
>
</div>
<div class="p-4 bg-white rounded shadow">
<a
href="Welcome-Template.html"
class="text-blue-600 hover:underline"
>Welcome Template</a
>
</div>
</div>
</section>
</main>
<footer class="bg-black text-white p-6 text-center">
<p>
©
<script>
document.write(new Date().getFullYear());
</script>
HNG. All rights reserved.
</p>
</footer>
</body>
</html>