overleaf/services/web/app/views/user/login.pug

43 lines
1.7 KiB
Text
Raw Normal View History

extends ../layout-marketing
2014-02-12 05:23:40 -05:00
block content
main.content.content-alt#main-content
2014-06-09 03:54:14 -04:00
.container
.row
.col-md-6.col-md-offset-3.col-lg-4.col-lg-offset-4
.card
.page-header
2014-07-31 09:01:37 -04:00
h1 #{translate("log_in")}
form(data-ol-async-form, name="loginForm", action='/login', method="POST")
2014-06-09 03:54:14 -04:00
input(name='_csrf', type='hidden', value=csrfToken)
+formMessages()
+customFormMessage('invalid-password-retry-or-reset', 'danger')
| !{translate('email_or_password_wrong_try_again_or_reset', {}, [{ name: 'a', attrs: { href: '/user/password/reset', 'aria-describedby': 'resetPasswordDescription' } }])}
span.sr-only(id='resetPasswordDescription')
| #{translate('reset_password_link')}
+customValidationMessage('password-compromised')
| !{translate('password_compromised_try_again_or_use_known_device_or_reset', {}, [{name: 'a', attrs: {href: 'https://haveibeenpwned.com/passwords', rel: 'noopener noreferrer', target: '_blank'}}, {name: 'a', attrs: {href: '/user/password/reset', target: '_blank'}}])}.
2014-06-09 05:19:02 -04:00
.form-group
2014-06-17 11:19:40 -04:00
input.form-control(
type='email',
name='email',
2014-06-18 10:23:00 -04:00
required,
placeholder='email@example.com',
autofocus="true"
2014-06-17 11:19:40 -04:00
)
2014-06-09 05:19:02 -04:00
.form-group
2014-06-17 11:19:40 -04:00
input.form-control(
type='password',
name='password',
2014-06-18 10:23:00 -04:00
required,
placeholder='********',
2014-06-17 11:19:40 -04:00
)
2014-06-09 03:54:14 -04:00
.actions
2014-06-18 10:23:00 -04:00
button.btn-primary.btn(
type='submit',
data-ol-disabled-inflight
)
span(data-ol-inflight="idle") #{translate("login")}
span(hidden data-ol-inflight="pending") #{translate("logging_in")}…
2014-07-31 09:01:37 -04:00
a.pull-right(href='/user/password/reset') #{translate("forgot_your_password")}?