-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.php
More file actions
41 lines (36 loc) · 1.11 KB
/
account.php
File metadata and controls
41 lines (36 loc) · 1.11 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
<?php
include 'stylesheets.php';
include 'nav.php';
if(!$_SESSION['logged_in']){
header('Location:index.php');
}
?>
<head>
<link rel="stylesheet" href="accoun.css?v=<?time()?>">
</head>
<div id = "container">
<div id = "outer">
<div id = "content">
<div id ="headerBar">Vehicles</div>
<div id = "inner-content">
<a href = "manageVehicle.php" id = "link">Manage my Vehicles</a>
</div>
</div>
<div id = "content">
<div id = "headerBar">Account Mangement</div>
<div id = "inner-content">
<a href = "manageUserInfo.php" id = "link">Update User Information</a>
</div>
<div id = "inner-content">
<a href = "updatePassword.php" id = "link">Update Password</a>
</div>
</div>
<div id = "content">
<div id = "headerBar">Orders</div>
<div id = "inner-content">
<a href = "viewOrders.php" id = "link">View My Orders</a>
</div>
</div>
</div>
</div>
<?php include 'footer.php'?>