fix style app/auth/profile.py

This commit is contained in:
Trent Palmer 2025-02-09 17:03:51 -08:00
parent 4b67a96f56
commit 4cb734be40

View File

@ -26,7 +26,11 @@ def change_password():
else:
flash("Error Invalid Password")
return(redirect(url_for('prof.change_password')))
return render_template('change_password.html', title='Change Password', form=form)
return render_template(
'change_password.html',
title='Change Password',
form=form,
)
@prof.route("/edit-profile", methods=["GET", "POST"])