-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquiz-results.html
182 lines (174 loc) · 5.33 KB
/
quiz-results.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
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Choz Quiz Results</title>
<!--[if mso]>
<style type="text/css">
body,
table,
td {
font-family: Arial, Helvetica, sans-serif !important;
}
</style>
<![endif]-->
</head>
<body style="
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #FAF7F6;
">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"
style="background-color: #FAF7F6;">
<tr>
<td style="padding: 20px 0;">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="
max-width: 600px;
margin: 0 auto;
/* The white table now has a background image */
background-color: #FFFFFF; /* Fallback color for non-supporting email clients */
background-image: url('https://api.choz.io/images/choz_background_tile.jpeg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
">
<!-- Header -->
<tr>
<td style="background-color: #EFD3C4;padding: 20px;text-align: center;">
<img src="https://api.choz.io/images/new_choz_logo.png" alt="Choz Logo" style="max-width: 150px; height: auto;" />
<h1 style="color: #3C0C36;font-size: 24px;margin-top: 20px;">Your Quiz Results Are In!</h1>
</h1>
</td>
</tr>
<!-- Quiz Result Section -->
<tr>
<td style="padding: 30px 20px;">
<h2 style="
color: #3C0C36;
font-size: 20px;
margin-bottom: 20px;
">
Quiz: {{examName}}
</h2>
<p style="
color: #3B2B2D;
font-size: 18px;
line-height: 1.6;
margin: 0 0 20px 0;
">
Congratulations on completing the quiz! Here's how you did:
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"
style="margin-top: 20px;">
<tr>
<!-- Score Box -->
<td style="text-align: center;padding: 15px;background-color: rgba(249,236,231, 0.9);border-radius: 8px;">
<p style="font-size: 36px;color: #3C0C36;margin: 0;font-weight: bold;">
{{score}}
</p>
<p style="font-size: 16px;color: #5A4648;margin: 5px 0 0;">Your Score</p>
</td>
<td width="20"></td>
<!-- Correct Answers Box -->
<td style="
text-align: center;
padding: 15px;
background-color: rgba(239,211,196, 0.9); /* Brand accent background with slight transparency */
border-radius: 8px;
">
<p style="
font-size: 36px;
color: #3C0C36;
margin: 0;
font-weight: bold;
">
{{correctAnswers}} / {{totalQuestions}}
</p>
<p style="
font-size: 16px;
color: #5A4648;
margin: 5px 0 0;
">
Correct Answers
</p>
</td>
</tr>
</table>
</td>
</tr>
<!-- Footer Section: Additional Message -->
<tr>
<td style="padding: 0 20px 30px; text-align: left;">
<p style="
color: #5A4648;
font-size: 16px;
line-height: 1.5;
margin: 0 0 15px 0;
">
Feel free to take more quizzes or challenge your friends!
</p>
<p style="
color: #5A4648;
font-size: 16px;
line-height: 1.5;
margin: 0 0 20px 0;
">
For any questions or feedback, please contact us.
</p>
<p style="
color: #5A4648;
font-size: 16px;
line-height: 1.5;
">
Best regards,<br />
The Choz Team
</p>
</td>
</tr>
<!-- Footer -->
<tr>
<td style="
background-color: #F9ECE7; /* Subtle footer background */
padding: 20px;
text-align: center;
border-top: 1px solid #EFD3C4; /* Light divider on brand color */
">
<p style="
color: #5A4648;
font-size: 14px;
margin: 0;
">
© 2025 Choz Platform. All rights reserved.
</p>
<p style="
color: #5A4648;
font-size: 14px;
margin: 10px 0 0;
">
<a href="https://choz.io" style="
color: #3C0C36;
text-decoration: none;
">
Visit Choz
</a>
|
<a href="mailto:info@choz.io" style="
color: #3C0C36;
text-decoration: none;
">
Contact Support
</a>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>