From b21893796c151a04a98244c56b036b12440efa10 Mon Sep 17 00:00:00 2001 From: Seligmann Date: Sat, 26 Mar 2022 18:02:18 -0500 Subject: [PATCH] added comments for when placeholders are removed --- flash_auth_app/project/main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flash_auth_app/project/main.py b/flash_auth_app/project/main.py index c79b3eb..0bc4056 100644 --- a/flash_auth_app/project/main.py +++ b/flash_auth_app/project/main.py @@ -5,8 +5,10 @@ main = Blueprint('main', __name__) @main.route('/') def index(): - return 'Index' + # return render_template('index.html') + return 'Index' # placeholder @main.route('/profile') def profile(): - return 'Profile' \ No newline at end of file + # return render_template('profile.html') + return 'Profile' # placeholder \ No newline at end of file