aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 402675ef8a4252673e862a7c199cd3e74963c33b (plain)
1
2
3
4
5
6
7
8
9
10
11
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 %}