diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 12 |
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 |