2019-04-17 10:00:13 -04:00
|
|
|
extends ../layout
|
2021-08-19 05:37:18 -04:00
|
|
|
include ../_mixins/recaptcha
|
2019-04-17 10:00:13 -04:00
|
|
|
|
|
|
|
block content
|
|
|
|
- var email = reconfirm_email ? reconfirm_email : ""
|
2021-07-21 07:52:24 -04: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 09:23:05 -04:00
|
|
|
main.content.content-alt#main-content
|
2019-04-17 10:00:13 -04:00
|
|
|
.container
|
|
|
|
.row
|
|
|
|
.col-sm-12.col-md-6.col-md-offset-3
|
|
|
|
.card
|
|
|
|
h1.card-header.text-capitalize #{translate("reconfirm")} #{translate("Account")}
|
|
|
|
p #{translate('reconfirm_explained')}
|
|
|
|
a(href=`mailto:${settings.adminEmail}`, ng-non-bindable) #{settings.adminEmail}
|
|
|
|
| .
|
|
|
|
form(
|
|
|
|
async-form="reconfirm-account-request",
|
|
|
|
name="reconfirmAccountForm"
|
|
|
|
action="/user/reconfirm",
|
|
|
|
method="POST",
|
|
|
|
ng-cloak
|
|
|
|
ng-init="email='"+email+"'"
|
|
|
|
aria-label=translate('request_reconfirmation_email')
|
2021-07-21 07:52:24 -04:00
|
|
|
captcha=(showCaptcha ? '' : false),
|
|
|
|
captcha-action-name=(showCaptcha ? "passwordReset" : false),
|
2019-04-17 10:00:13 -04:00
|
|
|
)
|
|
|
|
input(type="hidden", name="_csrf", value=csrfToken)
|
|
|
|
form-messages(for="reconfirmAccountForm" role="alert")
|
|
|
|
.form-group
|
|
|
|
label(for='email') #{translate("please_enter_email")}
|
|
|
|
input.form-control(
|
|
|
|
aria-label="email"
|
|
|
|
type='email',
|
|
|
|
name='email',
|
|
|
|
placeholder='email@example.com',
|
|
|
|
required,
|
|
|
|
ng-model="email",
|
|
|
|
autofocus
|
|
|
|
)
|
|
|
|
span.small.text-primary(
|
|
|
|
ng-show="reconfirmAccountForm.email.$invalid && reconfirmAccountForm.email.$dirty"
|
|
|
|
) #{translate("must_be_email_address")}
|
|
|
|
.actions
|
|
|
|
button.btn.btn-primary(
|
|
|
|
type='submit',
|
|
|
|
ng-disabled="reconfirmAccountForm.$invalid"
|
2021-06-03 14:54:02 -04:00
|
|
|
aria-label=translate('request_password_reset_to_reconfirm')
|
|
|
|
) #{translate('request_password_reset_to_reconfirm')}
|
2021-08-19 05:37:18 -04:00
|
|
|
.row
|
|
|
|
.col-sm-12.col-md-6.col-md-offset-3
|
|
|
|
if showCaptcha
|
|
|
|
+recaptchaConditions
|