-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.php
More file actions
24 lines (22 loc) · 855 Bytes
/
confirmation.php
File metadata and controls
24 lines (22 loc) · 855 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous" />
<title>Thank you for your preference! - FELInt</title>
</head>
<body>
<div class="container">
<main>
<h2>Thank you for your preference!</h2>
<hr />
<div class="alert alert-success" role="alert">Your appointment has been scheduled!<br />Please wait for our architect to contact you for confirmation.</div>
<a href="index.php" class="btn btn-primary">Return</a>
</main>
</div>
</body>