-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
96 lines (87 loc) · 3.89 KB
/
book.html
File metadata and controls
96 lines (87 loc) · 3.89 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
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
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='index.css'>
<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>
</head>
<body>
<iframe src="header.html" frameborder="0" width="100%" height="100"></iframe>
<h1><center><b><img src="https://img.icons8.com/bubbles/80/000000/train.png"/>Train Ticket Booking  <img src="https://img.icons8.com/officel/56/000000/tracks-intersection.png"/></center></b></h1>
<!-- Booking Form from booking.html -->
<form method='get' action='checkout.html' 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 STATION :</label>
<select id="inputState" class="form-control" name="source">
<option>Panvel</option>
<option>Khandeshwar</option>
<option>Kharghar</option>
<option>Vashi</option>
<option>Thane</option>
<!-- Add other source options here -->
</select>
</div>
<div class="form-group col-md-5" name="dest">
<label for="inputPassword4">
FINAL DESTINATION :</label>
<select id="inputState" class="form-control" name="dest">
<option>Panvel</option>
<option>Khandeshwar</option>
<option>Kharghar</option>
<option>Vashi</option>
<option>Thane</option>
<!-- Add other destination options here -->
</select>
</div>
</div>
<center>
<center>
<br>
<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>
<div>
<button type="submit" class="button" name="login_submit">Proceed</button>
</div>
</div>
</form>
</div>
</section>
</div>
</form>
</body>
</html>