-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequestsuccess.html
More file actions
37 lines (36 loc) · 895 Bytes
/
requestsuccess.html
File metadata and controls
37 lines (36 loc) · 895 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>request_success</title>
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<style>
body {
background-image: url("images/bg.jpg");
background-size: 1250px 750px;
text-align: center;
font-family: "Nunito", sans-serif;
}
</style>
</head>
<body>
<br />
<br />
<div style="font-size: 3em">
Your request has been submitted successfully!
</div>
<br /><br />
<br /><br />
<p style="font-size: 1.5em">We'll contact you soon.</p>
<p style="font-size: 1.5em">
Return to
<a
href="userhome.jsp"
style="text-decoration: none; color: rgb(0, 145, 29); font-size: 1.6em"
>Homepage</a
>
</p>
</body>
</html>