-
Notifications
You must be signed in to change notification settings - Fork 0
/
parking_lot.php
92 lines (76 loc) · 2.89 KB
/
parking_lot.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
session_start();
if (!(isset($_SESSION['uname'])))
{
echo "<script>location.href='login_change.php'</script>";
}
?>
<!DOCTYPE html>
<html>
<head>
<link href="block_style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<title>PES E-Canteen</title>
</head>
<body>
<div id="body">
<div id = "navbar" class="navbar">
<nav class="font">
<a href="index_change.php"><strong>Home</strong></a>
<a href="login_change.php"><strong>Logout</strong></a>
<a href="#about_us"><strong>About us!</strong></a>
<select id="nav_to_shops" onchange="location = this.value;"> <!-- when an option is selected, redirect to the value !-->
<option class="shop_link" value="#">Choose Your Shop</option>
<option class="shop_link" value="./b_block_shop1.php">Food Court</option> <!-- change values to what is required !-->
<option class="shop_link" value="./b_block_shop2.php">Food Point</option>
<option class="shop_link" value="./food_point.php">B-Block Food Point</option>
<option class="shop_link" value="./ramesh_canteen.php">Ramesh Canteen</option>
</select>
</nav>
</div>
<div id='heading'>
<br><br><br><br><br><br><br><br>
<h2><strong>Parking Lot</strong></h2><br>
</div>
<br>
<table>
<tr><td><pre> </pre></td>
<td class="shop_image">
<h4>Ramesh Canteen</h4>
<a href="ramesh_canteen.php"><img src="ramesh_cant_img.jpg" style="transform:rotate(90deg);" alt="shop1" height="300" width="300"></a>
</td>
</tr>
</table>
<br>
<div id="about_us">
<strong>About Us</strong>
<div id="some_data">
<div class="some_thing">
<strong>Address</strong>:Outer Ring Rd, Banashankari 3rd Stage, Banashankari, Bengaluru, Karnataka 560085
</div>
<div class="some_thing">
<strong>Campus</strong>:Urban
</div>
<div class="some_thing">
<strong>Terms Of Use.</strong>
</div>
<div class="some_thing">
<strong>License</strong>:All rights reserved.
</div>
</div>
</div>
</div>
<div id="social_media">
<ul>
<li><a href="#index_change.php"><img src="facebook.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.php"><img src="pintrest.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.php"><img src="instagram.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.php"><img src="google+.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.php"><img src="twitter.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.php"><img src="whatsapp.jpg" height="30" width="30"></a></li>
</ul>
</div>
<script type="text/javascript">
</script>
</body>
</html>