login.jade 1001 B

123456789101112131415161718192021222324252627
  1. extends ../layout
  2. block content
  3. section#partial
  4. .container
  5. .row
  6. .col-sm-8.col-sm-offset-2.text-center
  7. h3 Log In
  8. hr
  9. .row
  10. .col-sm-8.col-sm-offset-2
  11. form.form-horizontal(method='POST')
  12. input(type='hidden', name='_csrf', value=_csrf)
  13. .form-group
  14. label.col-sm-3.control-label(for='email') Email
  15. .col-sm-7
  16. input.form-control(type='email', name='email', id='email', placeholder='Email', autofocus=true)
  17. .form-group
  18. label.col-sm-3.control-label(for='password') Password
  19. .col-sm-7
  20. input.form-control(type='password', name='password', id='password', placeholder='Password')
  21. .form-group
  22. .col-sm-offset-3.col-sm-7
  23. button.col-sm-3.btn.btn-primary(type='submit')
  24. i.fa.fa-user
  25. | Login
  26. a.btn.btn-link(href='/forgot') Forgot your password?