41 lines
		
	
	
		
			808 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			808 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 five seconds.</p>
 | 
						|
      </div>
 | 
						|
 | 
						|
      <script>
 | 
						|
        setTimeout(function(){
 | 
						|
          window.location.href = '/';
 | 
						|
        }, 5000);
 | 
						|
      </script>
 | 
						|
 | 
						|
    <!-- Footer -->
 | 
						|
    <?php include "./page-blocks/footer.php" ?>
 | 
						|
 | 
						|
  </body>
 | 
						|
 | 
						|
</html>
 |