aboutsummaryrefslogtreecommitdiff
path: root/src/templates/index.html
blob: dae4c7ef1220c4ebbd8b72d54a14b46296c968cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends 'base.html' %}
{% block content %}
<div class=content-noborder>
		<div class=index-header>
				<h1 class=index-header>Enter a Location</h1>
		</div>
		{% if msg is defined %}
				<div class=index-header>
						<h2 class=index-header>{{ msg }}</h2>
				</div>
		{% endif %}
		<div class=index-form>
				<form method="post">
					{{ form.csrf_token }}
					{{ form.location }}
					{{ form.submit() }}
				</form>
		</div>
</div>
{% endblock %}