diff options
author | Sam Chudnick <sam@chudnick.com> | 2023-06-10 06:31:09 -0400 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2023-06-10 06:31:09 -0400 |
commit | 80e5ebc04346b1aba37158dedbdd4045c0a7c042 (patch) | |
tree | bddff185f21dde037d39973f82b4a5a8997ff7c9 /src/templates/index.html | |
parent | 6fa3d04aad627ffa4786b91acc24e4f3e8b70312 (diff) |
Moved files to src directory. Continued work on frontend.
Diffstat (limited to 'src/templates/index.html')
-rw-r--r-- | src/templates/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/templates/index.html b/src/templates/index.html new file mode 100644 index 0000000..da2a19a --- /dev/null +++ b/src/templates/index.html | |||
@@ -0,0 +1,15 @@ | |||
1 | {% extends 'base.html' %} | ||
2 | {% block content %} | ||
3 | <div class=content-noborder> | ||
4 | <div class=index-title> | ||
5 | <h1>Enter 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 %} | ||