mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-27 08:00:06 +02:00

* Remove auth-pages-bs5 test assignment setPassword * Remove auth-pages-bs5 test assignment passwordReset * Remove auth-pages-bs5 test assignment primaryEmailCheck * Remove auth-pages-bs5 test assignment reconfirm * Remove - bootstrap5PageStatus = 'enabled' * Remove primary-email-check.less * Fix spacing * Remove unused translations * Removed unused SplitTestHandler * Update password_reset_sentence_case to password_reset GitOrigin-RevId: d5a5c9a1576f325186aa103c4b7ad8fb819b790a
73 lines
2.1 KiB
Text
73 lines
2.1 KiB
Text
extends ../layout-website-redesign
|
|
include ../_mixins/recaptcha
|
|
|
|
block vars
|
|
- isWebsiteRedesign = true
|
|
|
|
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(data-ol-captcha-retry-trigger-area='')
|
|
.container.auth-aux-container(style='max-width: 420px')
|
|
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
|
|
)
|
|
h1.h5.mb-3 #{translate("reconfirm_account")}
|
|
p #{translate('reconfirm_explained')}
|
|
|
|
|
a(href=`mailto:${settings.adminEmail}`) #{settings.adminEmail}
|
|
| .
|
|
|
|
div(data-ol-not-sent)
|
|
+formMessagesNewStyle
|
|
|
|
input(name='_csrf' type='hidden' value=csrfToken)
|
|
.form-group.mb-3
|
|
label.form-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.w-100(
|
|
style='white-space: normal'
|
|
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')}
|
|
|
|
if showCaptcha
|
|
+recaptchaConditions
|