-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
54 lines (51 loc) · 2.43 KB
/
Copy pathsuccess.html
File metadata and controls
54 lines (51 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You | Wamsley Group</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="./images/glasshouse-logo.png" alt="Wamsley Group logo" height="40" class="d-inline-block align-text-top me-2 toplogo">
<span>Wamsley Group</span>
</a>
</div>
</nav>
<!-- Success Message -->
<div class="container py-5">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<div class="card shadow-lg">
<div class="card-body text-center p-5">
<div class="mb-4">
<i class="fas fa-check-circle text-success" style="font-size: 5rem;"></i>
</div>
<h1 class="h2 mb-4">Thank You!</h1>
<p class="lead mb-4">Your message has been sent successfully.</p>
<p class="text-muted">We'll get back to you as soon as possible, typically within 24 hours.</p>
<div class="mt-5">
<a href="index.html" class="btn btn-primary btn-lg me-2">Return Home</a>
<a href="https://jaredwamsley.matrix.daytonrealtors.org/Matrix/Public/?L=1&ap=SCH#1" class="btn btn-outline-primary btn-lg">View Listings</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-dark text-white py-4 mt-5 fixed-bottom">
<div class="container text-center">
<p class="mb-0">© 2026 Wamsley Group. All rights reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>