-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcreatenewtrip.html
30 lines (24 loc) · 995 Bytes
/
createnewtrip.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
{% extends "base.html" %}
{% block title %}Start Planning a Trip{% endblock %}
{% block head %}
{% endblock %}
{% block content %}
<div class="container">
<div class="row align-items-center">
<div id="create-new-trip" class="col">
<div class="row justify-content-center">
<h4>Create a new trip</h4>
</div>
<div class="row align-items-center justify-content-center">
<form class="form-group" action="/createnewtrip" method="POST" autocomplete="off">
<label for="trip-name">Name your trip</label>
<input type="text" class="form-control" id="trip-name" name="trip-name" placeholder="Trip Name">
<label for="accommodations">Where are you staying?</label>
<input type="text" class="form-control" id="accommodations" name="accommodations" placeholder="Trip Accommodations">
<input type="submit" class="btn btn-primary">
</form>
</div>
</div>
</div>
</div>
{% endblock %}