Updated Street Address
[openhouseparty.online/.git] / build / lib / flaskr / home.py
diff --git a/build/lib/flaskr/home.py b/build/lib/flaskr/home.py
new file mode 100644 (file)
index 0000000..5a7bc35
--- /dev/null
@@ -0,0 +1,11 @@
+
+from flask import (
+    Blueprint, flash, g, redirect, render_template, request, url_for
+)
+
+bp = Blueprint('home', __name__)
+
+#Display Data - Dashboard
+@bp.route('/')
+def index():
+    return render_template('home.html')
\ No newline at end of file