diff options
Diffstat (limited to 'client/html/user_registration.hbs')
| -rw-r--r-- | client/html/user_registration.hbs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/client/html/user_registration.hbs b/client/html/user_registration.hbs new file mode 100644 index 0000000..a17997f --- /dev/null +++ b/client/html/user_registration.hbs @@ -0,0 +1,37 @@ +<div class='content-wrapper' id='user-registration'> + <h1>Registration</h1> + <form autocomplete='off'> + <fieldset class='input'> + <ul> + <li> + <label for='user-name'>User name</label> + <input id='user-name' name='user-name' type='text' autocomplete='off' placeholder='letters, digits, _, -' required/> + </li> + <li> + <label for='user-password'>Password</label> + <input id='user-password' name='user-password' type='password' autocomplete='off' placeholder='5+ characters' required/> + </li> + <li> + <label for='user-email'>Email</label> + <input id='user-email' name='user-email' type='email' autocomplete='off' placeholder='optional'/> + <p class='hint'>Used for password reminder and to show a <a href='http://gravatar.com/'>Gravatar</a>. Leave blank for random Gravatar.</p> + </li> + </ul> + </fieldset> + <fieldset class='messages'></fieldset> + <fieldset class='buttons'> + <input type='submit' value='Create an account'/> + </fieldset> + </form> + <div class='info'> + <p>Registered users can:</p> + <ul> + <li><i class='fa fa-upload'></i> upload new posts</li> + <li><i class='fa fa-heart'></i> mark them as favorite</li> + <li><i class='fa fa-commenting-o'></i> add comments</li> + <li><i class='fa fa-star-half-o'></i> vote up/down on posts and comments</li> + </ul> + <hr/> + <p>By creating an account, you are agreeing to the <a href='/help/tos'>Terms of Service</a>.</p> + </div> +</div> |