aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2022-05-22 11:40:12 -0600
committernavanchauhan <navanchauhan@gmail.com>2022-05-22 11:40:12 -0600
commitaaf1c40d86d8382040ff08ea3ad7b54809a624ff (patch)
tree3555a2aac50757cea9dff21bd293bbc48ad80903 /templates/index.html
parent34965e2cdb026bfaf7facf5c520848ce19120251 (diff)
added flask templates
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..402675e
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,12 @@
+{% extends 'base.html' %}
+
+{% block content %}
+ <h1>{% block title %} Home {% endblock %}</h1>
+ <main>
+ <form action="/" method="POST">
+ <p>Enter Movie Title: <input type="text" name="title"></input></p>
+ <p><input type="submit" value="Search" /></p>
+ </form>
+ </main>
+ <footer>* General searches do not work well, try to be specific</footer>
+{% endblock %} \ No newline at end of file