diff --git a/scripts/Authentication System using Flask/main.py b/scripts/Authentication System using Flask/main.py index 2e55761..6ee8aad 100644 --- a/scripts/Authentication System using Flask/main.py +++ b/scripts/Authentication System using Flask/main.py @@ -70,9 +70,9 @@ def login(): login_user(user) return redirect(url_for('dashboard')) else: - flash("Incorrect Password! Please Try again") + flash("Incorrect password! Please try again.") else: - flash("This email is not registered. Try Signing Up!") + flash("This email is not registered. Try signing up!") return render_template('login.html', form=form) @@ -92,4 +92,4 @@ def register(): return render_template('register.html', form=form) if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + app.run(debug=True)