This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/client/html/login.hbs
rr- 58e0d2e295 client/views: replace fieldsets with divs
Although it has nice semantic name, fieldset gives troubles to flexbox,
so I'm dropping it.
2016-04-10 00:24:54 +02:00

28 lines
1,015 B
Handlebars

<div class='content-wrapper' id='login'>
<h1>Log in</h1>
<form>
<div class='input'>
<ul>
<li>
<label for='user-name'>User name</label>
<input id='user-name' name='name' type='text' required/>
</li>
<li>
<label for='user-password'>Password</label>
<input id='user-password' name='password' type='password' required/>
</li>
<li>
<input id='remember-user' name='remember-user' type='checkbox'/>
<label for='remember-user' class='checkbox'>Remember me</label>
</li>
</ul>
</div>
<div class='messages'></div>
<div class='buttons'>
<input type='submit' value='Log in'/>
{{#if this.canSendMails}}
<a href='/password-reset'>Forgot the password?</a>
{{/if}}
</div>
</form>
</div>