summaryrefslogtreecommitdiff
path: root/app/routes.py
diff options
context:
space:
mode:
authorstilbruch <stilbruch@protonail.com>2022-03-23 17:49:08 -0500
committerstilbruch <stilbruch@protonail.com>2022-03-23 17:49:08 -0500
commit5f48bcb3ed524dbd20e424170136da6b6d4a2300 (patch)
tree97e03e943e6b25cd4ce1d752c34cf8ce4df10bf0 /app/routes.py
parentcd503caa68c52f98f41d5fecc2afd8c31156f4db (diff)
downloadStrengthy-5f48bcb3ed524dbd20e424170136da6b6d4a2300.tar.xz
Strengthy-5f48bcb3ed524dbd20e424170136da6b6d4a2300.zip
Fix bug and add pretty icons
Diffstat (limited to 'app/routes.py')
-rw-r--r--app/routes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/routes.py b/app/routes.py
index c1424b5..e6214dc 100644
--- a/app/routes.py
+++ b/app/routes.py
@@ -6,12 +6,12 @@ from tables.user import User
@app.route("/", methods=["GET"])
def index():
- return render_template('base/index.html')
+ return render_template('index.html')
@app.route("/home", methods=["GET"])
@login_required
def home():
- return render_template('base/home.html')
+ return render_template('home.html')
@app.route("/login", methods=['GET', 'POST'])
def login():