aboutsummaryrefslogtreecommitdiff
path: root/src/templates/location.html
diff options
context:
space:
mode:
authorSam Chudnick <sam@chudnick.com>2023-06-10 06:31:09 -0400
committerSam Chudnick <sam@chudnick.com>2023-06-10 06:31:09 -0400
commit80e5ebc04346b1aba37158dedbdd4045c0a7c042 (patch)
treebddff185f21dde037d39973f82b4a5a8997ff7c9 /src/templates/location.html
parent6fa3d04aad627ffa4786b91acc24e4f3e8b70312 (diff)
Moved files to src directory. Continued work on frontend.
Diffstat (limited to 'src/templates/location.html')
-rw-r--r--src/templates/location.html15
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 %}