-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest-submitted.html
More file actions
38 lines (34 loc) · 921 Bytes
/
Copy pathrequest-submitted.html
File metadata and controls
38 lines (34 loc) · 921 Bytes
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
---
layout: default
title: "Request Submitted"
permalink: /request-submitted/
---
<section id="request-submitted">
<h1>🎉 Request Submitted Successfully!</h1>
<p>Thank you for your request. We will review your submission and get back to you shortly.</p>
<a href="/" class="button">Return to Home</a>
</section>
<style>
#request-submitted {
max-width: 600px;
margin: auto;
padding: 20px;
text-align: center;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #0056b3;
}
</style>