-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_customer.php
More file actions
executable file
·47 lines (41 loc) · 1.37 KB
/
main_customer.php
File metadata and controls
executable file
·47 lines (41 loc) · 1.37 KB
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
<?php
session_start();
include 'lib/connection.php';
if (!isset($_SESSION['email'])) {
header('Location: index.php');
exit();
}
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="main_customer.css">
</head>
<body>
<div class="header">
<ul class="headerList">
<li><a style="color: blue;">Hello <?php echo $_SESSION['first_name'] ?> !</a></li>
<li><a href="view_profile.php">View Profile</a></li>
<li><a href="make_reservation.php">Make Reservation</a></li>
<li><a href="check_tool_availability.php">Check Tool Availability</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
<div class="mainbody">
<div class="mainbodySpaceHolder">
</div>
<div class="mainbodyWrapper1">
<a class="formTitle">Main Menu</a><br>
<li><a></a></li><br>
<li><a href="view_profile.php">View Profile</a></li><br>
<li><a href="make_reservation.php">Make Reservation</a></li><br>
<li><a href="check_tool_availability.php">Check Tool Availability</a></li><br>
<li><a href="logout.php">Logout</a></li><br>
<li><a></a></li><br>
</div>
<div class="mainbodySpaceHolder">
</div>
</div>
</body>
</html>