diff options
| author | rr- | 2016-04-01 18:45:25 +0200 |
|---|---|---|
| committer | rr- | 2016-04-01 18:48:16 +0200 |
| commit | e487adcc97b8d2bd111a34b7d3c72d66001deb8b (patch) | |
| tree | d684abf99bf176ead0a785bc237ae3b6a81417c1 /client/html/user_registration.hbs | |
| parent | 1ad71585c4e95555566e8af068d5addf75b33274 (diff) | |
split files into client/ and server/
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> |