From 64aa45dcaa4d9ec189ff99794bf2c36f0dfa08b0 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 7 May 2024 12:37:04 -0700 Subject: [PATCH] remove commented out code --- app/main/views/sign_in.py | 50 --------------------------------------- 1 file changed, 50 deletions(-) diff --git a/app/main/views/sign_in.py b/app/main/views/sign_in.py index 7af9ce8ca..f9873c656 100644 --- a/app/main/views/sign_in.py +++ b/app/main/views/sign_in.py @@ -151,54 +151,6 @@ def sign_in(): return redirect(redirect_url) return redirect(url_for("main.show_accounts_or_dashboard")) - # form = LoginForm() - # current_app.logger.info("Got the login form") - # password_reset_url = url_for(".forgot_password", next=request.args.get("next")) - - # if form.validate_on_submit(): - # user = User.from_email_address_and_password_or_none( - # form.email_address.data, form.password.data - # ) - - # if user: - # # add user to session to mark us as in the process of signing the user in - # session["user_details"] = {"email": user.email_address, "id": user.id} - - # if user.state == "pending": - # return redirect( - # url_for("main.resend_email_verification", next=redirect_url) - # ) - - # if user.is_active: - # if session.get("invited_user_id"): - # invited_user = InvitedUser.from_session() - # if user.email_address.lower() != invited_user.email_address.lower(): - # flash("You cannot accept an invite for another person.") - # session.pop("invited_user_id", None) - # abort(403) - # else: - # invited_user.accept_invite() - - # user.send_login_code() - - # if user.sms_auth: - # return redirect(url_for(".two_factor_sms", next=redirect_url)) - - # if user.email_auth: - # return redirect( - # url_for(".two_factor_email_sent", next=redirect_url) - # ) - - # # Vague error message for login in case of user not known, locked, inactive or password not verified - # flash( - # Markup( - # ( - # f"The email address or password you entered is incorrect." - # f" Forgot your password?" - # ) - # ) - # ) - other_device = current_user.logged_in_elsewhere() token = generate_token( @@ -213,10 +165,8 @@ def sign_in(): url = url.replace("STATE", token) return render_template( "views/signin.html", - # form=form, again=bool(redirect_url), other_device=other_device, - # password_reset_url=password_reset_url, initial_signin_url=url, )