From 3cf09d5a99ccf53a5aac367ef11da634dbad10a4 Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Tue, 21 May 2019 12:59:55 +0000 Subject: Initial checkin of prototype --- server.py | 13 +++ templates/index.html | 223 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 236 insertions(+) create mode 100755 server.py create mode 100644 templates/index.html diff --git a/server.py b/server.py new file mode 100755 index 0000000..b5b33b7 --- /dev/null +++ b/server.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +import flask + +app = flask.Flask(__name__) + +@app.route("/") +def index(): + return flask.render_template("index.html") + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=9881, debug=True) diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..0c5627c --- /dev/null +++ b/templates/index.html @@ -0,0 +1,223 @@ + + + + + + Goals + + + + +

Week of August 28

+ +
+

Create Goal

+
+
+
+
+
+
+
+ + +
+
+
+
+
+

Really delete?

+

+ + +

+
+

Exercise (150 minutes / week):

+
+

+ + +

+
+

30 minutes (25%)

+
+
+
+
+
+
+
+
+

Exercise (150 minutes / week):

+
+ + +
+
75 minutes (50%)
+
+
+

Exercise (150 minutes / week):

+
+ + +
+
75 minutes (50%)
+
+
+

Exercise (150 minutes / week):

+
+ + +
+
100 minutes (80%)
+
+
+

Exercise (150 minutes / week):

+
+ + +
+
Goal Completed!
+
+ + -- cgit v1.2.3