mirror of
https://github.com/simple-login/app.git
synced 2024-11-14 08:01:13 +01:00
31 lines
976 B
Python
31 lines
976 B
Python
from flask import request, render_template, redirect, url_for, flash
|
|
from flask_wtf import FlaskForm
|
|
from wtforms import StringField, validators
|
|
|
|
from app.auth.base import auth_bp
|
|
from app.dashboard.views.setting import send_reset_password_email
|
|
from app.models import User
|
|
|
|
|
|
class ForgotPasswordForm(FlaskForm):
|
|
email = StringField("Email", validators=[validators.DataRequired()])
|
|
|
|
|
|
@auth_bp.route("/forgot_password", methods=["GET", "POST"])
|
|
def forgot_password():
|
|
form = ForgotPasswordForm(request.form)
|
|
|
|
if form.validate_on_submit():
|
|
email = form.email.data.strip().lower()
|
|
flash(
|
|
"If your email is correct, you are going to receive an email to reset your password",
|
|
"success",
|
|
)
|
|
|
|
user = User.get_by(email=email)
|
|
|
|
if user:
|
|
send_reset_password_email(user)
|
|
return redirect(url_for("auth.forgot_password"))
|
|
|
|
return render_template("auth/forgot_password.html", form=form)
|