1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/templates/reset.hbs
2018-03-19 09:57:31 +00:00

41 lines
1.9 KiB
Handlebars

<div class="gh-flow">
<div class="gh-flow-content-wrap">
<section class="gh-flow-content fade-in">
<form id="reset" class="gh-signin" method="post" novalidate="novalidate" {{action "submit" on="submit"}}>
{{#gh-form-group errors=errors hasValidated=hasValidated property="newPassword"}}
<span class="gh-input-icon gh-icon-lock">
{{svg-jar "lock"}}
{{gh-text-input
type="password"
name="newpassword"
placeholder="Password"
class="password"
autocorrect="off"
autofocus="autofocus"
value=(readonly newPassword)
input=(action (mut newPassword) value="target.value")}}
</span>
{{/gh-form-group}}
{{#gh-form-group errors=errors hasValidated=hasValidated property="ne2Password"}}
<span class="gh-input-icon gh-icon-lock">
{{svg-jar "lock"}}
{{gh-text-input
type="password"
name="ne2password"
placeholder="Confirm Password"
class="password"
autocorrect="off"
autofocus="autofocus"
value=(readonly ne2Password)
input=(action (mut ne2Password) value="target.value")}}
</span>
{{/gh-form-group}}
{{gh-task-button "Reset Password" task=resetPassword class="gh-btn gh-btn-blue gh-btn-block gh-btn-icon" type="submit" autoWidth="false"}}
</form>
<p class="main-error">{{flowErrors}}&nbsp;</p>
</section>
</div>
</div>