diff --git a/main.py b/main.py
index 99fa49b..3bb4c71 100644
--- a/main.py
+++ b/main.py
@@ -1,27 +1,84 @@
import webapp2
+
+# html boilerplate for the top of every page
+page_header = """
+
+
+
+ FlickList
+
+
+
FlickList
+"""
+
+# html boilerplate for the bottom of every page
+page_footer = """
+
+
+"""
+
class Index(webapp2.RequestHandler):
+ """ Handles requests coming in to '/' (the root of our site)
+ e.g. www.flicklist.com/
+ """
- def getRandomMovie(self):
+ def get(self):
- # TODO: make a list with at least 5 movie titles
+ edit_header = "
Edit My Watchlist
"
- # TODO: randomly choose one of the movies, and return it
+ # a form for adding new movies
+ add_form = """
+
+ """
- return "The Big Lebowski"
+ # TODO 1
+ # Include another form so the user can "cross off" a movie from their list.
+
+
+ # TODO 4 (Extra Credit)
+ # modify your form to use a dropdown (