* Setup prettier * Ignore these pug templates by prettier * Fix typo * Fix prettier error * Add prettier-ignore for quoting of event-segmentation attribute * Manual tab indentation * Interpolate * Remove unbuffered if conditional * Inline event-segmentation objects and remove prettier-ignore rule * Fix spacing before interpolation * Source format * Source format GitOrigin-RevId: c30e037f5caf8f91efc1bd9e75f81ae533b5a506
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
extends ../layout-marketing
|
|
include ../_mixins/recaptcha
|
|
|
|
block vars
|
|
- bootstrap5PageStatus = 'disabled'
|
|
|
|
block content
|
|
- var email = reconfirm_email ? reconfirm_email : ''
|
|
- 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'
|
|
)
|
|
|
|
main#main-content.content.content-alt(data-ol-captcha-retry-trigger-area='')
|
|
.container
|
|
.row
|
|
.col-sm-12.col-md-6.col-md-offset-3
|
|
.card
|
|
h1.card-header #{translate("reconfirm_account")}
|
|
p #{translate('reconfirm_explained')}
|
|
a(href=`mailto:${settings.adminEmail}`) #{settings.adminEmail}
|
|
| .
|
|
form(
|
|
name='reconfirmAccountForm'
|
|
captcha-action-name=showCaptcha ? 'passwordReset' : false
|
|
data-ol-async-form
|
|
action='/user/reconfirm'
|
|
method='POST'
|
|
aria-label=translate('request_reconfirmation_email')
|
|
captcha=showCaptcha ? '' : false
|
|
)
|
|
div(data-ol-not-sent)
|
|
+formMessages
|
|
|
|
input(name='_csrf' type='hidden' value=csrfToken)
|
|
.form-group
|
|
label(for='email') #{translate("please_enter_email")}
|
|
input.form-control(
|
|
name='email'
|
|
aria-label='email'
|
|
type='email'
|
|
placeholder='email@example.com'
|
|
required
|
|
autofocus
|
|
value=email
|
|
)
|
|
.actions
|
|
button.btn.btn-primary(
|
|
type='submit'
|
|
data-ol-disabled-inflight
|
|
aria-label=translate('request_password_reset_to_reconfirm')
|
|
)
|
|
span(data-ol-inflight='idle')
|
|
| #{translate('request_password_reset_to_reconfirm')}
|
|
span(hidden data-ol-inflight='pending')
|
|
| #{translate('request_password_reset_to_reconfirm')}…
|
|
div(hidden data-ol-sent)
|
|
.alert.alert-success(role='alert' aria-live='polite')
|
|
span #{translate('password_reset_email_sent')}
|
|
.row
|
|
.col-sm-12.col-md-6.col-md-offset-3
|
|
if showCaptcha
|
|
+recaptchaConditions
|