On signup: tell user to check their spam folder too for the email

pull/38/head
Noah Petherbridge 2024-01-13 11:26:25 -08:00
parent 20d9bf7768
commit a9cc758624
1 changed files with 4 additions and 0 deletions

View File

@ -177,6 +177,10 @@ func Signup() http.HandlerFunc {
}
session.Flash(w, r, "We have sent an e-mail to %s with a link to continue signing up your account. Please go and check your e-mail.", email)
// Reminder to check their spam folder too (Gmail users)
session.Flash(w, r, "If you don't see the confirmation e-mail, check in case it went to your spam folder.")
templates.Redirect(w, r.URL.Path)
return
}