login.pug 332 B

1234567891011121314151617
  1. extends include/layout
  2. block content
  3. h1= title
  4. p Welcome to #{title}
  5. form(method='POST')
  6. if failure
  7. p(class='error') Incorrect Login or Password
  8. label
  9. span Login
  10. input(type='text' name='username')
  11. label
  12. span Password
  13. input(type='password' name='password')
  14. input(type='submit')