Advertisement
zachdyer

Pug exporting string of HTML

Aug 12th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. .container.pt-5.pb-5
  2. .card.mx-auto(style='max-width: 23rem;')
  3. .card-header.text-white.bg-primary Login
  4. .card-body
  5. | #{message}
  6. form(action="/admin/index.php?" + query, method="post")
  7. .form-group
  8. label(for='email') Email
  9. input#email.form-control(type='text', placeholder='Email', name='email')
  10. .form-group
  11. label(for='password') Password
  12. input#password.form-control(type='password', placeholder='Password', name='password')
  13. button.btn.btn-primary(type='submit') Submit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement