You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When login/register fails it doesn't show any error messages, in order to do that you should change view's return to some thing like this: return render_template('register.html', form = form, error=form.errors)
and in the view show {{ error }} with proper format and style.
The text was updated successfully, but these errors were encountered:
When login/register fails it doesn't show any error messages, in order to do that you should change view's return to some thing like this:
return render_template('register.html', form = form, error=form.errors)
and in the view show
{{ error }}
with proper format and style.The text was updated successfully, but these errors were encountered: