Fred Boniface
272b4786b7
Fix issues #29, #30, #31. Partial fix for #23 on mobile devices. #23 still needs more work and possible a redesign of the menu. Reviewed-on: #34
41 lines
809 B
PHP
41 lines
809 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php include './page-blocks/headers.php';?>
|
|
<title>Sent</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Popup Menu -->
|
|
<?php require "./page-blocks/nav-menu.php";?>
|
|
|
|
<!-- Main Content Begins -->
|
|
<?php require "./page-blocks/title-image.php";?>
|
|
|
|
<br>
|
|
|
|
<h1>Report Submitted</h1>
|
|
|
|
<div class="text-description">
|
|
<p>Thanks for your report or suggestion.</p>
|
|
<p>You're helping to make Athena better for everyone.</p>
|
|
<br>
|
|
<br>
|
|
<p>You will be redirected to the homepage in three seconds.</p>
|
|
</div>
|
|
|
|
<script>
|
|
setTimeout(function(){
|
|
window.location.href = '/';
|
|
}, 3000);
|
|
</script>
|
|
|
|
<!-- Footer -->
|
|
<?php include "./page-blocks/footer.php" ?>
|
|
|
|
</body>
|
|
|
|
</html>
|