-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththank-you.html
More file actions
56 lines (49 loc) · 1.08 KB
/
Copy paththank-you.html
File metadata and controls
56 lines (49 loc) · 1.08 KB
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
---
layout: default
title: "Thank You"
permalink: /thank-you/
---
<section id="thank-you">
<h1>🎉 Thank You for Registering!</h1>
<p>We've received your course registration. Our team will contact you shortly with the next steps and access details. Please check your email for updates.</p>
<a href="/" class="button">Go to Home</a>
</section>
<style>
#thank-you {
max-width: 600px;
margin: auto;
padding: 20px;
text-align: center;
background-color: #1f1f1f;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
color: #f4f4f4;
}
#thank-you p {
font-size: 1.2em;
color: #ccc;
margin-bottom: 20px;
}
a {
color: #4CAF50;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #28a745;
}
.button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #28a745;
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #218838;
}
</style>