2019-04-17 10:00:13 -04:00
|
|
|
extends ../layout
|
|
|
|
|
|
|
|
block content
|
|
|
|
- var email = reconfirm_email ? reconfirm_email : ""
|
2021-03-04 11:11:09 -05:00
|
|
|
main.content.content-alt
|
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')
|
|
|
|
)
|
|
|
|
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')}
|