mirror of
https://github.com/documize/community.git
synced 2025-07-22 14:49:42 +02:00
18 lines
983 B
Handlebars
18 lines
983 B
Handlebars
<div class="login-form">
|
|
<form {{action 'reset' on="submit"}}>
|
|
<div class="form-group">
|
|
<label>New Password</label>
|
|
{{focus-input type="password" value=password id="newPassword" class=(if hasPasswordError 'form-control is-invalid' 'form-control')}}
|
|
<small class="form-text text-muted">Choose a strong password</small>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Confirm Password</label>
|
|
{{input type="password" value=passwordConfirm id="passwordConfirm" class=(if hasConfirmError 'form-control is-invalid' 'form-control')}}
|
|
<small class="form-text text-muted">Please type your new password again</small>
|
|
</div>
|
|
<div class="margin-top-10 margin-bottom-20">
|
|
<button type="submit" class="btn btn-success">Reset</button>
|
|
<span class="{{unless mustMatch "d-none"}} color-red margin-left-20">Passwords must match</span>
|
|
</div>
|
|
</form>
|
|
</div>
|