diff options
Diffstat (limited to 'src/templates/location.html')
-rw-r--r-- | src/templates/location.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/templates/location.html b/src/templates/location.html new file mode 100644 index 0000000..fa691ea --- /dev/null +++ b/src/templates/location.html | |||
@@ -0,0 +1,15 @@ | |||
1 | {% extends 'base.html' %} | ||
2 | {% block content %} | ||
3 | <div class=content-noborder> | ||
4 | <div class=index-title> | ||
5 | <h1>Select a Location</h1> | ||
6 | </div> | ||
7 | <div class=index-form> | ||
8 | <form method="post"> | ||
9 | {{ form.csrf_token }} | ||
10 | {{ form.location }} | ||
11 | {{ form.submit() }} | ||
12 | </form> | ||
13 | </div> | ||
14 | </div> | ||
15 | {% endblock %} | ||