entry_new.jade 990 B

1234567891011121314151617181920212223242526
  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 Create An Entry
  8. hr
  9. .row
  10. .col-sm-8.col-sm-offset-2
  11. form.form-horizontal(id='entry-form', method='POST')
  12. input(type='hidden', name='_csrf', value=_csrf)
  13. .form-group
  14. label.col-sm-3.control-label(for='entryname') Entry Name
  15. .col-sm-7
  16. input.form-control(type='text', name='entryname', id='entryname', value='', autofocus)
  17. .form-group
  18. label.col-sm-3.control-label(for='entryname') Entry Description
  19. .col-sm-7
  20. textarea.form-control(type='textarea', rows='5', name='entrydesc', id='entrydesc', value='', autofocus)
  21. .form-group
  22. .col-sm-offset-3.col-sm-7
  23. button.btn.btn-success(type='submit')
  24. i.fa.fa-balance-scale
  25. | Create Entry