index.jade 1.1 KB

12345678910111213141516171819202122232425262728
  1. doctype html
  2. html
  3. head
  4. meta(http-equiv="Content-Type", content="text/html; charset=utf-8")
  5. meta(name="viewport", content="width=device-width, initial-scale=1")
  6. title Join the #{community} community on Slack!
  7. link(href="css/style.css", rel="stylesheet", type="text/css")
  8. link(href="http://fonts.googleapis.com/css?family=Lato:300,400,700,900,700italic|Open+Sans:700italic,400,600,300,700,800", rel="stylesheet", type="text/css")
  9. body
  10. #wrapper
  11. .main
  12. .header
  13. h1
  14. strong #{community}
  15. h2 Enter you email in below to join #{community} on slack!
  16. .content
  17. .information
  18. form(method="POST", action="/invite")#join-form.form
  19. input(type="text", name="email", placeholder="Enter Your Email Address")#slack-email.field
  20. input(type="submit", value="Join").submit
  21. script.
  22. var form = document.getElementById('join-form');
  23. var email = document.getElementById('slack-email')
  24. form.addEventListener('submit', function(evt) {
  25. if (!email.value) {
  26. evt.preventDefault();
  27. }
  28. });