2021-09-16 08:14:52 +00:00
|
|
|
extends ../layout-marketing
|
2021-08-19 09:37:18 +00:00
|
|
|
include ../_mixins/recaptcha
|
2014-02-12 10:23:40 +00:00
|
|
|
|
2018-09-28 20:22:24 +00:00
|
|
|
block vars
|
|
|
|
- metadata = { viewport: true }
|
|
|
|
|
2014-02-12 10:23:40 +00:00
|
|
|
block content
|
2021-07-21 11:52:24 +00:00
|
|
|
- var showCaptcha = settings.recaptcha && settings.recaptcha.siteKey && !(settings.recaptcha.disabled && settings.recaptcha.disabled.passwordReset)
|
|
|
|
|
|
|
|
if showCaptcha
|
|
|
|
script(type="text/javascript", nonce=scriptNonce, src="https://www.recaptcha.net/recaptcha/api.js?render=explicit")
|
|
|
|
div(
|
|
|
|
id="recaptcha"
|
|
|
|
class="g-recaptcha"
|
|
|
|
data-sitekey=settings.recaptcha.siteKey
|
|
|
|
data-size="invisible"
|
|
|
|
data-badge="inline"
|
|
|
|
)
|
|
|
|
|
2021-07-27 13:23:05 +00:00
|
|
|
main.content.content-alt#main-content
|
2014-06-09 09:25:38 +00:00
|
|
|
.container
|
|
|
|
.row
|
|
|
|
.col-md-6.col-md-offset-3.col-lg-4.col-lg-offset-4
|
|
|
|
.card
|
|
|
|
.page-header
|
2014-07-31 13:01:37 +00:00
|
|
|
h1 #{translate("password_reset")}
|
2014-06-09 09:25:38 +00:00
|
|
|
.messageArea
|
2014-06-17 15:19:40 +00:00
|
|
|
form(
|
2021-09-16 08:45:19 +00:00
|
|
|
data-ol-async-form
|
2014-06-18 14:23:00 +00:00
|
|
|
name="passwordResetForm"
|
2014-06-17 15:43:33 +00:00
|
|
|
action="/user/password/reset",
|
2014-11-17 15:19:11 +00:00
|
|
|
method="POST",
|
2021-07-21 11:52:24 +00:00
|
|
|
captcha=(showCaptcha ? '' : false),
|
|
|
|
captcha-action-name=(showCaptcha ? "passwordReset" : false),
|
2014-06-17 15:19:40 +00:00
|
|
|
)
|
2021-09-24 09:22:37 +00:00
|
|
|
+formMessages()
|
2021-09-16 08:14:52 +00:00
|
|
|
|
2014-06-09 09:25:38 +00:00
|
|
|
input(type="hidden", name="_csrf", value=csrfToken)
|
|
|
|
.form-group
|
2014-07-31 13:01:37 +00:00
|
|
|
label(for='email') #{translate("please_enter_email")}
|
2021-03-31 10:44:48 +00:00
|
|
|
input.form-control#email(
|
2021-09-16 08:14:52 +00:00
|
|
|
aria-label="email"
|
2014-06-17 15:19:40 +00:00
|
|
|
type='email',
|
|
|
|
name='email',
|
2014-06-18 14:23:00 +00:00
|
|
|
placeholder='email@example.com',
|
|
|
|
required,
|
2021-03-31 10:44:48 +00:00
|
|
|
autocomplete="username",
|
2014-07-23 10:18:42 +00:00
|
|
|
autofocus
|
2014-06-17 15:19:40 +00:00
|
|
|
)
|
2014-06-09 09:25:38 +00:00
|
|
|
.actions
|
2014-06-18 14:23:00 +00:00
|
|
|
button.btn.btn-primary(
|
|
|
|
type='submit',
|
2021-09-16 08:14:52 +00:00
|
|
|
data-ol-disabled-inflight,
|
|
|
|
aria-label=translate('request_password_reset_to_reconfirm')
|
2020-04-22 09:35:51 +00:00
|
|
|
)
|
2021-09-16 08:45:19 +00:00
|
|
|
span(data-ol-inflight="idle")
|
2021-09-16 08:14:52 +00:00
|
|
|
| #{translate("request_password_reset")}
|
2021-09-16 08:45:19 +00:00
|
|
|
span(hidden data-ol-inflight="pending")
|
2021-09-16 08:14:52 +00:00
|
|
|
| #{translate("requesting_password_reset")}…
|
2021-08-19 09:37:18 +00:00
|
|
|
|
|
|
|
.row
|
|
|
|
.col-md-6.col-md-offset-3.col-lg-4.col-lg-offset-4
|
|
|
|
if showCaptcha
|
|
|
|
+recaptchaConditions
|