-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCab Add.html
110 lines (93 loc) · 3.49 KB
/
Cab Add.html
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
<!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">
<title>VIT CAB SHARE</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://use.fontawesome.com/5b1ca6f502.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
</head>
<body>
<div class="container-fluid" style="background: #CBE32D">
<h1 style="margin-left: 50px;margin-bottom: 30px;margin-top: 30px;">Book my Cab</h1>
</div>
<h1 class="text-center">ADDING A CAB</h1>
<div class="container">
<form>
<div class="form-group">
<label for="name">Name of the Cab</label>
<input type="text" class="form-control" id="name">
</div>
<div class="form-group">
<label for="model">Cab Model</label>
<input type="text" class="form-control" id="model">
</div>
<div class="form-group">
<label for="company">Company</label>
<input type="text" class="form-control" id="company">
</div>
<div class="form-group">
<label for="no">Number of people</label>
<input type="number" class="form-control" id="no">
</div>
<div class="form-group">
<label for="from">From</label>
<select class="form-control" id="from">
<option>VIT Hostel</option>
<option>Chennai Airport</option>
<option>Bangalore Airport</option>
<option>Katpadi Railway Station</option>
</select>
</div>
<div class="form-group">
<label for="to">To</label>
<select class="form-control" id="from">
<option>VIT Hostel</option>
<option>Chennai Airport</option>
<option>Bangalore Airport</option>
<option>Katpadi Railway Station</option>
</select>
</div>
<div class="form-group">
<label for="date from">Date From</label>
<input type="date" class="form-control" id="date from">
</div>
<div class="form-group">
<label for="date to">Date To</label>
<input type="date" class="form-control" id="date to">
</div>
<div class="form-group">
<label for="no">Number of Cabs</label>
<input type="text" class="form-control" id="no">
</div>
<div class="form-group">
<label for="image">Image</label>
<input type="file" class="form-control" id="image">
</div>
<div class="checkbox">
<label><input type="checkbox"> AC </label>
</div>
<button type="submit" class="btn btn-default">Submit</button><br><br><br><br><br>
</form>
</div>
<div class="container-fluid" style="background-color:#222222;color:white;">
<div class="text-center">
<h1>Contact Us</h1>
<br><br>
</div>
<div class="col-md-4">
<h2>Book My Cab</h2>
<h4>All rights reserved</h4>
</div>
<div class="col-md-4">
<h4><i class="fa fa-facebook fa-3x"></i> <i class="fa fa-twitter fa-3x"> </i><i class="fa fa-instagram fa-3x"></i> <i class="fa fa-linkedin fa-3x"></i></h4>
</div>
<div class="col-md-4 text-right">
<h4>K-805</h4>
<h4>VIT University</h4>
<h4>Vellore Tamilnadu 632014</h4>
</div>
</div>
</body>