aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: a877fef90a30760d942b17a5f451eeb40bf3ed26 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends 'base.html' %}

{% block content %}
<h1>{% block title %}  Enter a Location {% endblock %}</h1>
<form method="post">
	{{ form.csrf_token }}
	{{ form.location }}
	{{ form.submit() }}
</form>
{% endblock %}