doctype html html head meta(http-equiv="Content-Type", content="text/html; charset=utf-8") meta(name="viewport", content="width=device-width, initial-scale=1") title Join the #{community} community on Slack! link(href="css/style.css", rel="stylesheet", type="text/css") 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") body #wrapper .main .header h1 strong #{community} h2 Enter your email below to join #{community} on slack! .content .information form(method="POST", action="/invite")#join-form.form input(type="text", name="email", placeholder="Enter Your Email Address")#slack-email.field if tokenRequired input(type="text", name="token", placeholder="Enter the token you were given")#slack-token.field input(type="submit", value="Join").submit script. var form = document.getElementById('join-form'); var email = document.getElementById('slack-email'); var token = document.getElementById('slack-token'); form.addEventListener('submit', function(evt) { if (!email.value || (tokenRequired && !token.value)) { evt.preventDefault(); } });