mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
21 lines
819 B
Text
21 lines
819 B
Text
extends ../layout
|
|
|
|
block content
|
|
.content.content-alt
|
|
.container
|
|
.row
|
|
.col-md-6.col-md-offset-3.col-lg-4.col-lg-offset-4
|
|
.card
|
|
.page-header
|
|
h1 Login
|
|
.messageArea
|
|
form.validate#loginForm(enctype='multipart/form-data', method='post')
|
|
input(name='_csrf', type='hidden', value=csrfToken)
|
|
input(name='redir', type='hidden', value=redir)
|
|
.form-group
|
|
input#email.email.required.form-control(type='email', autofocus="autofocus", name='email', placeholder='email@example.com')
|
|
.form-group
|
|
input#password.required.form-control(type='password', name='password', placeholder='********')
|
|
.actions
|
|
button.btn-primary.btn#login(type='submit') Login
|
|
a#passwordReset.pull-right(href='/user/password/reset') Forgot your password?
|