1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00
documize/gui/app/templates/components/user/password-reset.hbs

19 lines
1.1 KiB
Handlebars
Raw Normal View History

<div class="login-form">
2018-12-08 20:54:19 +00:00
<form {{action "reset" on="submit"}}>
2017-12-11 20:59:28 +00:00
<div class="form-group">
<label>New Password</label>
2018-12-08 20:54:19 +00:00
{{focus-input type="password" value=password id="newPassword" autocomplete="new-password" class=(if hasPasswordError "form-control is-invalid" "form-control")}}
2017-12-11 20:59:28 +00:00
<small class="form-text text-muted">Choose a strong password</small>
</div>
2017-12-11 20:59:28 +00:00
<div class="form-group">
<label>Confirm Password</label>
2018-12-08 20:54:19 +00:00
{{input type="password" value=passwordConfirm id="passwordConfirm" autocomplete="new-password" class=(if hasConfirmError "form-control is-invalid" "form-control")}}
2017-12-11 20:59:28 +00:00
<small class="form-text text-muted">Please type your new password again</small>
</div>
<div class="margin-top-10 margin-bottom-20">
2022-03-01 22:40:51 -05:00
{{ui/ui-button color=constants.Color.Green light=true label=(localize 'reset') onClick=(action "reset")}}
2018-12-04 17:26:57 +00:00
<span class="{{unless mustMatch "d-none"}} color-red-600 margin-left-20">Passwords must match</span>
</div>
</form>
</div>