forked from prajwals420/Mumbai-Local-Train-Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmybookings.php
49 lines (42 loc) · 1.3 KB
/
mybookings.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
<?php
include 'connect.php' ;
session_start();
if ($_SESSION['log'] == '')
{
header("location:index.php");
}
include 'header.php';
?>
<style >
.container{
border-spacing: 10px;
font-family: Montserrat, sans-serif;
font-size: 18px !important;
border: 2px solid grey;
margin-top: 50px;
margin-bottom: 200px;
padding-top: 50px;
padding-right: 70px;
padding-bottom: 50px;
padding-left: 100px;
align-content: center;
}
</style>
<html>
<head>
<link rel='stylesheet' href='index.css'>
<br><br>
<h1><center><b><img src="https://img.icons8.com/cute-clipart/70/000000/bookmark.png"/> User Bookings   <img src="https://img.icons8.com/nolan/74/ticket.png"/></center></b></h1>
<div class="container">
<td><a href='trainbookings.php'><button style="background-color: black ; border-color:black " ><img src="https://img.icons8.com/dusk/44/000000/train-ticket.png"/> View Train Bookings </button></a></td>
</tr>
<br> <br>
<tr>
<td><a href='busbookings.php'><button style="background-color: black ; border-color:black "><img src="https://img.icons8.com/officel/50/000000/bus-ticket.png"/> View Bus Bookings</button></a></td></td>
</tr>
</table>
</tr>
</div>
<?php include 'footer.php';
?>
</html>