-
Notifications
You must be signed in to change notification settings - Fork 0
/
reservation.html
53 lines (39 loc) · 1.4 KB
/
reservation.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
<html>
<head>
<script src = 'https://code.jquery.com/jquery-3.1.1.min.js'>
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron text-center">
<h1>ALSA TRAVEL</h1>
<p>Making traveller simplier!</p>
</div>
<div class="container" >
<label> Rota:</label>
<p> {{route}} </p>
<label> travel:</label>
<p>{{travel}} </p>
<label> seat:</label>
<p> {{seat}} </p>
<form action="insertReservation">
<div class="form-group">
<label> Name </label>
<input type = "text" name="name" class="form-control">
<input type = "hidden" name="route" value="{{route}}">
<input type = "hidden" name="travel" value="{{travel}}">
<input type = "hidden" name="seat" value="{{seat}}">
<input type ="hidden" name="travel_id" value="{{travel_id}}">
<label> Surname </label>
<input name="surname" type = "text" class="form-control">
<label> Phone Number </label>
<input name="phone_no" type = "text" class="form-control">
<br> </br>
<button type="submit" class="btn btn-default">Submit</button>
</div>
</form>
</div>
</body>
</html>