diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-19 10:32:42 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-19 10:32:42 +0200 |
commit | a8af4dc1331728737fd3c5282ddc39deb7b7a4fe (patch) | |
tree | 0568258a2fd0453d8e30daaef7f98e8e033c1089 | |
parent | Remove the HTML 500 error handler to better understand the problem. (diff) | |
download | newspipe-a8af4dc1331728737fd3c5282ddc39deb7b7a4fe.tar.gz newspipe-a8af4dc1331728737fd3c5282ddc39deb7b7a4fe.tar.bz2 newspipe-a8af4dc1331728737fd3c5282ddc39deb7b7a4fe.zip |
Test.
-rw-r--r-- | pyaggr3g470r/views/views.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyaggr3g470r/views/views.py b/pyaggr3g470r/views/views.py index e0086032..3d25f0bb 100644 --- a/pyaggr3g470r/views/views.py +++ b/pyaggr3g470r/views/views.py @@ -165,14 +165,18 @@ def login(): form = SigninForm() if form.validate_on_submit(): + print("Form OK!") user = UserController().get(email=form.email.data) login_user(user) + print("User loaded!") g.user = user session['email'] = form.email.data identity_changed.send(current_app._get_current_object(), identity=Identity(user.id)) + print("Identity changed!") flash(gettext("Logged in successfully."), 'success') return redirect(url_for('home')) + print("Form not OK!!!") return render_template('login.html', form=form) |