index.jade 716 B

12345678910111213141516171819202122232425
  1. doctype html
  2. html
  3. head
  4. title Join the #{community} community on Slack!
  5. style.
  6. body {
  7. padding: 50px;
  8. font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  9. }
  10. input {
  11. font-size: 24px;
  12. width: 400px;
  13. }
  14. body
  15. h1 Join the #{community} community on Slack!
  16. form(method="POST", action="/invite")#join-form
  17. input(type="text", name="email", placeholder="Enter your email")#slack-email
  18. script.
  19. var form = document.getElementById('join-form');
  20. var email = document.getElementById('slack-email')
  21. form.addEventListener('submit', function(evt) {
  22. if (!email.value) {
  23. evt.preventDefault();
  24. }
  25. });