-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
52 lines (47 loc) · 1.41 KB
/
home.php
File metadata and controls
52 lines (47 loc) · 1.41 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
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>a:link, a:visited {
background-color: #f44336;
color: white;
padding: 30px 80px;
font-size:50px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: red;
}</style>
<body>
<a href='car.php'>car</a>
<a href='microbus.php'>microbus</a>
<a href='bus.php'>bus</a>
<a href='truck.php'>truck</a>
<a href='locat.php'>location</a><br>
<br><a href='orderlist_of_car.php'>car orderlist</a>
<a href='orderlist_of_mirco.php'>microbus orderlist</a>
<a href='orderlist_of_bus.php'>bus orderlist</a><br>
<br><a href='orderlist_of_truck.php'>truck orderlist</a>
<a href='orderlist_of_package.php'>package orderlist</a>
<a href='customer_details_b.php'>customer_details_b</a><br>
<br> <a href='customer_details_c.php'>customer_details_c</a>
<a href='customer_details_m.php'>customer_details_m</a>
<a href='packages.php'>package</a><br>
<br><a href='customer_details_t.php'>customer_details_t</a>
<a href='customer_details_e.php'>customer_details_e</a>
<br>
<br>
</body>
</html>
<?php
session_start();
if (isset($_SESSION['Email'])){
echo "<a href='logout.php'>Logout</a>";
}
?>