forked from prajwals420/Mumbai-Local-Train-Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookbus.php
154 lines (116 loc) · 3.63 KB
/
bookbus.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
include 'connect.php' ;
session_start();
if ($_SESSION['log'] == '')
{
header("location:sindex.php");
}
include 'header.php';
?>
<style>
.container{
border-spacing: 10px;
font-family: Montserrat, sans-serif;
font-size: 18px !important;
border: 2px solid grey;
margin-top: 30px;
margin-bottom: 50px;
padding-top: 50px;
padding-right: 50px;
padding-bottom: 50px;
padding-left: 150px;
align-content: center;
}
.button {
padding: 15px 32px;
align-content: left;
color: white;
background-color:black;
}
#number {
overflow: hidden;
width: 600px;
}
input[type=number]{
width: 250px;
}
</style>
</script>
</head>
<body>
<h1><center><b><img src="https://img.icons8.com/bubbles/80/000000/bus.png"/>Bus Ticket Booking   <img src="https://img.icons8.com/officel/54/000000/road.png"/></center></b></h1>
<form method='post' action ='busaction.php' align='center'>
<div class="container">
<section id="form" class="formborder">
<div class="container2">
<form>
<div class="form-row row justify-content-around" name="source">
 
<div class="form-group col-md-5" name="source">
<label for="inputEmail4">SOURCE BUS-STOP :</label>
<select id="inputState" class="form-control" name="source">
<option>Thane Railway Station</option>
<option>Dadoji Kondadev Stadium</option>
<option>Court Naka</option>
<option>Kalwa Naka</option>
<option>Shivaji Maharaj Hospital</option>
<option>Vitawa / Paryache Maidan</option>
<option>Sha Damodar Vitavkar Marg</option>
<option>Ganpati Pada</option>
<option>Mukund Company</option>
<option>Ganesh Nagar</option>
<option>Digha Gaon</option>
<option>MSEB</option>
<option>Reliable Plaza</option>
<option>Airoli Naka</option>
<option>Airoli Railway Station</option>
<option>Bharat Bijali</option>
<option>Siemens Company</option>
<option>Rabale Police Station</option>
<option>Rabale Naka</option>
</select>
<!-- <input type="email" class="form-control" id="inputEmail4" placeholder="FROM">-->
</div>
<div class="form-group col-md-5" name="dest">
<label for="inputPassword4">
FINAL BUS-STOP :</label>
<select id="inputState" class="form-control" name="dest">
<option>Thane Railway Station</option>
<option>Dadoji Kondadev Stadium</option>
<option>Court Naka</option>
<option>Kalwa Naka</option>
<option>Shivaji Maharaj Hospital</option>
<option>Vitawa / Paryache Maidan</option>
<option>Sha Damodar Vitavkar Marg</option>
<option>Ganpati Pada</option>
<option>Mukund Company</option>
<option>Ganesh Nagar</option>
<option>Digha Gaon</option>
<option>MSEB</option>
<option>Reliable Plaza</option>
<option>Airoli Naka</option>
<option>Airoli Railway Station</option>
<option>Bharat Bijali</option>
<option>Siemens Company</option>
<option>Rabale Police Station</option>
<option>Rabale Naka</option>
</select>
<!--<input type="password" class="form-control" id="inputPassword4" placeholder="TO">-->
</div>
<div class="form-row row justify-content-aroundd">
<div class="form-group col-md-16" >
<center><label for="inputState" ><h8>NO OF PASSENGERS :</h8></label></center>
<center> <input type="number" name="number" required min="1" max="5" ></center>
</div>
<br>
<div>
<button type="submit" class="button" name="login_submit" >Proceed</button>
</div>
</form>
</div>
</section>
</div>
</body>
<?php include 'footer.php';
?>
</html>