mirror of https://github.com/JohnHammond/CTFd.git
Add a password change notification email (#1221)
* Adds an email notification for password resetsbulk-clear-sessions
parent
60c46af58a
commit
a2551db690
|
@ -135,6 +135,7 @@ def reset_password(data=None):
|
||||||
name=user.name,
|
name=user.name,
|
||||||
)
|
)
|
||||||
db.session.close()
|
db.session.close()
|
||||||
|
email.password_change_alert(user.email)
|
||||||
return redirect(url_for("auth.login"))
|
return redirect(url_for("auth.login"))
|
||||||
|
|
||||||
if request.method == "POST":
|
if request.method == "POST":
|
||||||
|
|
|
@ -16,6 +16,17 @@ def sendmail(addr, text, subject="Message from {ctf_name}"):
|
||||||
return False, "No mail settings configured"
|
return False, "No mail settings configured"
|
||||||
|
|
||||||
|
|
||||||
|
def password_change_alert(email):
|
||||||
|
ctf_name = get_config("ctf_name")
|
||||||
|
text = (
|
||||||
|
"Your password for {ctf_name} has been changed.\n\n"
|
||||||
|
"If you didn't request a password change you can reset your password here: {url}"
|
||||||
|
).format(ctf_name=ctf_name, url=url_for("auth.reset_password", _external=True))
|
||||||
|
|
||||||
|
subject = "Password Change Confirmation for {ctf_name}".format(ctf_name=ctf_name)
|
||||||
|
return sendmail(addr=email, text=text, subject=subject)
|
||||||
|
|
||||||
|
|
||||||
def forgot_password(email):
|
def forgot_password(email):
|
||||||
token = serialize(email)
|
token = serialize(email)
|
||||||
text = """Did you initiate a password reset? If you didn't initiate this request you can ignore this email.
|
text = """Did you initiate a password reset? If you didn't initiate this request you can ignore this email.
|
||||||
|
|
Loading…
Reference in New Issue