-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact_Confirmation.php
65 lines (55 loc) · 1.53 KB
/
Contact_Confirmation.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
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
55
56
57
58
59
60
61
62
63
64
65
<!-- Nicholas MacFarland
03/04/20
CSIS 474-B01
Description:
This is the "Contact" page of the site that lets
the customer send feedback and send questions if
the customer has any.
-->
<?php
session_start(); /* Starts the session */
if (!isset($_SESSION['username']))
{
if (!isset($_SESSION['password']))
{
header("Refresh:5;url=LogIn.php");
echo "<h1>Please go and log in first before entering site, <br> you will be redirected in 5 seconds to the log-in screen.</h1>";
exit;
}
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="TennisHubb.css">
<link rel="stylesheet" type="text/css" href="Top_Menu_Navigation.css">
<div class="title">
<title>
TENNIS HUBB SITE
</title>
CONTACT CONFIRMATION
</div>
</head>
<hr>
<div class="topnav">
<a href="index.php">Home</a>
<a href="Shop.php">Shop</a>
<a class="active" href="#contact">Contact</a>
<a href="Shopping_Cart.php">Shopping Cart</a>
<a href="logout.php" onclick=" return confirm('Are You sure you want to logout?');">Log-out</a>
</div>
<hr>
<body>
<div class="contactInfo">
<h2>Contact Information Request Received</h2>
<p>
Please check your email in the time frame of
<br>
36 hours. Thank you for your patients and for contacting us.
</p>
</div>
</body>
<?php
include "footer.php";
?>
</html>