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