diff options
| author | rr- | 2016-05-09 20:07:54 +0200 |
|---|---|---|
| committer | rr- | 2016-05-09 22:36:29 +0200 |
| commit | 6405fbe9f27e75014b94e9acae4f15ff38c47d36 (patch) | |
| tree | a9ea1ad322b6a8fd4dbdc526ab0085d9bcfb3656 /client/html/user_registration.hbs | |
| parent | c34b1e3ccffd4bc52976e80b47cb4814f312219a (diff) | |
client/general: replace handlebars with underscore
Diffstat (limited to 'client/html/user_registration.hbs')
| -rw-r--r-- | client/html/user_registration.hbs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/html/user_registration.hbs b/client/html/user_registration.hbs index a01ad17..6b2666e 100644 --- a/client/html/user_registration.hbs +++ b/client/html/user_registration.hbs @@ -4,13 +4,13 @@ <div class='input'> <ul> <li> - {{textInput text='User name' id='user-name' name='user-name' placeholder='letters, digits, _, -' required=true pattern=this.userNamePattern}} + <%= makeTextInput({text: 'User name', id: 'user-name', name: 'user-name', placeholder: 'letters, digits, _, -', required: true, pattern: userNamePattern}) %> </li> <li> - {{passwordInput text='Password' id='user-password' name='user-password' placeholder='5+ characters' required=true pattern=this.passwordPattern}} + <%= makePasswordInput({text: 'Password', id: 'user-password', name: 'user-password', placeholder: '5+ characters', required: true, pattern: passwordPattern}) %> </li> <li> - {{emailInput text='Email' id='user-email' name='user-email' placeholder='optional'}} + <%= makeEmailInput({text: 'Email', id: 'user-email', name: 'user-email', 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> |