-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
79 lines (76 loc) · 2.65 KB
/
success.html
File metadata and controls
79 lines (76 loc) · 2.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Message Sent!</title>
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="/assets/img/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="/assets/img/android-chrome-512x512.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" xintegrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
body {
background-color: #f8f8fa;
color: #1d1d1f;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
text-align: center;
}
.container {
padding: 40px;
background-color: #fff;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
width: 90%;
max-width: 500px;
}
.icon {
font-size: 4rem;
color: #28a745;
margin-bottom: 20px;
}
h1 {
font-size: 2rem;
margin-top: 0;
margin-bottom: 10px;
color: #155724;
}
p {
font-size: 1.1rem;
color: #555;
margin-bottom: 30px;
}
.back-button {
background-color: #007aff;
color: white;
font-weight: 500;
border: none;
padding: 12px 25px;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
text-decoration: none;
transition: background-color 0.2s ease;
}
.back-button:hover {
background-color: #005ecb;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">
<i class="fas fa-check-circle"></i>
</div>
<h1>Thank You!</h1>
<p>Your message has been sent successfully. I'll get back to you as soon as possible.</p>
<a href="index.html" class="back-button">Back to Home</a>
</div>
</body>
</html>