-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (22 loc) · 761 Bytes
/
index.html
File metadata and controls
29 lines (22 loc) · 761 Bytes
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
{% extends "layout.html" %}
{% block title %}
Flights
{% endblock %}
{% block body %}
<h1>Book a Flight</h1>
<form action="{{ url_for('book') }}" method="post">
<div class="form-group">
<select class="form-control" name="flight_id">
{% for flight in flights %}
<option value="{{ flight.id }}">{{ flight.origin }} to {{ flight.destination }}</option>
{% endfor %}
</select>
</div>
<div class="form-group">
<input class="form-control" name="name" placeholder="Passenger Name">
</div>
<div class="form-group">
<button class="btn btn-primary">Book Flight</button>
</div>
</form>
{% endblock %}