mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
5141f7b452
[web] Improve a11y of form-messages GitOrigin-RevId: 36360bc188f9a582e891d50328a6f27b414dce2a
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
extends ../layout-marketing
|
|
|
|
block vars
|
|
- metadata = { viewport: true }
|
|
|
|
block content
|
|
main.content.content-alt#main-content
|
|
.container
|
|
.row
|
|
.col-md-6.col-md-offset-3.col-lg-4.col-lg-offset-4
|
|
.card
|
|
.page-header
|
|
h1 #{translate("log_in")}
|
|
form(data-ol-async-form, name="loginForm", action='/login', method="POST")
|
|
input(name='_csrf', type='hidden', value=csrfToken)
|
|
+formMessages()
|
|
.form-group
|
|
input.form-control(
|
|
type='email',
|
|
name='email',
|
|
required,
|
|
placeholder='email@example.com',
|
|
autofocus="true"
|
|
)
|
|
.form-group
|
|
input.form-control(
|
|
type='password',
|
|
name='password',
|
|
required,
|
|
placeholder='********',
|
|
)
|
|
.actions
|
|
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")}…
|
|
a.pull-right(href='/user/password/reset') #{translate("forgot_your_password")}?
|