register.html 1.1 KB

12345678910111213141516
  1. <template name="register">
  2. <div class="container">
  3. <button class="button" id="login">Login</button>
  4. <h1>Sign Up</h1>
  5. <form class="form">
  6. <input type="text" name="registerUsername" placeholder="Enter a username" onfocus="this.placeholder = ''" onblur="this.placeholder='Enter a username'" required/>
  7. <input type="email" name="registerEmail" placeholder="Enter your email" onfocus="this.placeholder = ''" onblur="this.placeholder='Enter your email'" required>
  8. <input type="password" name="registerPassword" placeholder="Enter a password" onfocus="this.placeholder = ''" onblur="this.placeholder='Enter a password'" required/> {{> reCAPTCHA}}
  9. <p>By registering, you agree to the Terms and Conditions and Privacy Policy.</p>
  10. <button type="submit">Sign Up</button>
  11. </form>
  12. <button class="btn-social" id="facebook-login"><i class="fa fa-facebook pull-left"></i>Signup with Facebook</button>
  13. <p></p>
  14. <button class="btn-social" id="github-login"><i class="fa fa-github pull-left"></i>Signup with Github</button>
  15. </div>
  16. </template>