szurubooru/client/html/password_reset.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

20 lines
802 B
Handlebars

<div class='content-wrapper' id='password-reset'>
<h1>Password reset</h1>
<form autocomplete='off'>
<div class='input'>
<ul>
<li>
<label for='user-name'>User name or e-mail address</label>
<input id='user-name' name='user-name' type='text' autocomplete='off' required/>
</li>
</ul>
</div>
<p><small>Proceeding will send an e-mail that contains a password reset
link. Clicking it is going to generate a new password for your account.
It is recommended to change that password to something else.</small></p>
<div class='messages'></div>
<div class='buttons'>
<input type='submit' value='Proceed'/>
</div>
</form>
</div>