From 4eb7a7b27b4eb34806da6cc94ce149fdd0d891d5 Mon Sep 17 00:00:00 2001 From: Patrick Jentsch Date: Fri, 5 Jul 2019 11:02:56 +0200 Subject: [PATCH] Add title parameter. --- app/auth/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/auth/views.py b/app/auth/views.py index d4b194dc..fdec9b09 100644 --- a/app/auth/views.py +++ b/app/auth/views.py @@ -4,7 +4,7 @@ from . import auth @auth.route('/login', methods=['GET', 'POST']) def login(): - return render_template('auth/login.html.j2') + return render_template('auth/login.html.j2', title='Log in') @auth.route('/register', methods=['GET', 'POST'])