From 52cd654f581e7986de524a97e9ae61bf38324228 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sun, 4 Jun 2023 17:47:00 -0400 Subject: Started turning into flask app --- templates/index.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..2d97379 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,26 @@ +{% extends 'base.html' %} + +{% block content %} +

{% block title %} Enter a Location {% endblock %}

+
+ {{ form.csrf_token }} +

+ {{ form.location.label }}
+ {{ form.location }} +

+

+ {{ form.days.label }}
+ {{ form.days }} +

+

+ {{ form.forecast_type.label }}
+ {{ form.forecast_type }} +

+

{{ form.submit() }}

+
+{% endblock %} + +
+ {{ form.name.label }} {{ form.name(size=20) }} + +
-- cgit v1.2.3