diff options
author | John Olheiser <john.olheiser@gmail.com> | 2020-08-26 10:12:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 10:12:09 -0500 |
commit | 981216c9fe51f8493c0ed648224b460e94582791 (patch) | |
tree | a8767cb1e0c17644aaf21382137fa8bb3800cdb1 | |
parent | cfbfb73c5656a48a0bd0733b384f5316741a753f (diff) | |
download | gitea-981216c9fe51f8493c0ed648224b460e94582791.tar.gz gitea-981216c9fe51f8493c0ed648224b460e94582791.zip |
Escape Email in forgot_password.tmpl (#12610) (#12612)
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: zeripath <art27@cantab.net>
-rw-r--r-- | templates/user/auth/forgot_passwd.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/auth/forgot_passwd.tmpl b/templates/user/auth/forgot_passwd.tmpl index 1e061763a5..111e42a3df 100644 --- a/templates/user/auth/forgot_passwd.tmpl +++ b/templates/user/auth/forgot_passwd.tmpl @@ -10,7 +10,7 @@ <div class="ui attached segment"> {{template "base/alert" .}} {{if .IsResetSent}} - <p>{{.i18n.Tr "auth.reset_password_mail_sent_prompt" .Email .ResetPwdCodeLives | Str2html}}</p> + <p>{{.i18n.Tr "auth.reset_password_mail_sent_prompt" (Escape .Email) .ResetPwdCodeLives | Str2html}}</p> {{else if .IsResetRequest}} <div class="required inline field {{if .Err_Email}}error{{end}}"> <label for="email">{{.i18n.Tr "email"}}</label> |