Skip to content

Commit 9e3df41

Browse files
committed
add header and footer
1 parent 89c8472 commit 9e3df41

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Request for an Account in {{ product.display_name }}</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 0;
11+
padding: 20px;
12+
color: #333;
13+
width: 600px;
14+
}
15+
.container {
16+
background-color: #f9f9f9;
17+
padding: 20px;
18+
border-radius: 5px;
19+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
20+
}
21+
.header {
22+
align-items: center;
23+
height: 200px;
24+
}
25+
.footer {
26+
align-items: center;
27+
}
28+
a {
29+
color: #007bff;
30+
text-decoration: none;
31+
}
32+
</style>
33+
</head>
34+
<body>
35+
<div class="header">
36+
</div>
37+
<div class="container">
38+
<p>Dear {{ user.first_name }},</p>
39+
<p>Thank you for your interest in {{ product.display_name }}. We are pleased to provide you with a one-time invitation link to register on the platform.</p>
40+
<p>Click <a href="{{ link }}">here</a> to access the registration page.</p>
41+
<p>Please follow the on-screen information and proceed with your registration.</p>
42+
<p>If any problem should occur, please feel free to contact us at {{ product.support_email }}.</p>
43+
<p>Enjoy {{ product.display_name }}!</p>
44+
<p>Best Regards,</p>
45+
<p>The <i>{{ product.display_name }}</i> Team</p>
46+
</div>
47+
<div class="footer">
48+
</div>
49+
</body>
50+
</html>

0 commit comments

Comments
 (0)