Merge branch 'development' of gitlab.ub.uni-bielefeld.de:sfb1288inf/opaque into development

This commit is contained in:
Stephan Porada
2019-09-11 14:53:15 +02:00
3 changed files with 14 additions and 7 deletions

View File

@ -131,9 +131,9 @@ def password_reset(token):
title='Password Reset')
@auth.route('/edit_profile', methods=['GET', 'POST'])
@auth.route('/settings', methods=['GET', 'POST'])
@login_required
def edit_profile():
def settings():
"""
View where loged in User can change own User information like Password etc.
"""
@ -144,7 +144,7 @@ def edit_profile():
db.session.add(current_user)
db.session.commit()
flash('Your password has been updated.')
return redirect(url_for('auth.edit_profile'))
return redirect(url_for('auth.settings'))
else:
flash('Invalid password.')
change_profile_form = EditProfileForm(user=current_user)
@ -155,10 +155,10 @@ def edit_profile():
flash('Your email has been updated.')
change_profile_form.email.data = current_user.email
return render_template(
'auth/edit_profile.html.j2',
'auth/settings.html.j2',
change_password_form=change_password_form,
change_profile_form=change_profile_form,
title='Edit Profile'
title='Settings'
)