forked from LondonStageDB/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirm.php
28 lines (25 loc) · 889 Bytes
/
confirm.php
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<?php include_once('common/header.php'); ?>
<title>London Stage Database Project: Confirmation</title>
</head>
<body id="confirm">
<?php include_once('common/nav.php'); ?>
<div id="main" class="main grid-container">
<div class="grid-x confirm-wrap">
<div class="small-12 page-heading">
<h1>Confirmation</h1>
</div>
<div class="small-12 medium-10 large-8 confirm-content">
<p>Your feedback has been submitted. Thanks for your interest in improving the London Stage Database!</p>
<ul class="no-bullet">
<li><a href="/contact.php">Submit Additional Feedback</a></li>
<li><a href="/search.php">Create another search</a></li>
</ul>
</div>
</div>
</div>
<?php include_once('common/footer.php'); ?>
</body>
</html>