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

22 lines
819 B
Text
Raw Normal View History

2014-02-12 05:23:40 -05:00
extends ../layout
block content
2014-06-09 03:54:14 -04:00
.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)
2014-06-09 05:19:02 -04:00
.form-group
2014-06-09 05:25:38 -04:00
input#email.email.required.form-control(type='email', autofocus="autofocus", name='email', placeholder='email@example.com')
2014-06-09 05:19:02 -04:00
.form-group
input#password.required.form-control(type='password', name='password', placeholder='********')
2014-06-09 03:54:14 -04:00
.actions
2014-06-09 05:19:02 -04:00
button.btn-primary.btn#login(type='submit') Login
2014-06-09 05:25:38 -04:00
a#passwordReset.pull-right(href='/user/password/reset') Forgot your password?