diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..35265d2 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,137 @@ + + + + + + Film Search + + + +

Film Search

+
+ + + +
+ + {% if results == "OOPS" %} +

Couldn't find the film. Please try again.

+ {% elif results %} +

Search Results for "{{ query }}":

+
+ {% for result in results %} +
+ + {{ result.title }} +

{{ result.title }}

+
+
+ {% endfor %} +
+ {% endif %} + +