2015-07-08 01:14:55 +03:00
|
|
|
<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"}}>
|
2019-12-13 17:20:29 +03:00
|
|
|
{{#gh-form-group errors=this.errors hasValidated=this.hasValidated property="newPassword"}}
|
2017-07-20 14:06:02 +03:00
|
|
|
<span class="gh-input-icon gh-icon-lock">
|
2018-03-19 12:57:31 +03:00
|
|
|
{{svg-jar "lock"}}
|
2018-02-28 14:44:03 +03:00
|
|
|
{{gh-text-input
|
|
|
|
type="password"
|
|
|
|
name="newpassword"
|
|
|
|
placeholder="Password"
|
|
|
|
class="password"
|
|
|
|
autocorrect="off"
|
2020-01-09 20:20:13 +03:00
|
|
|
shouldFocus=true
|
2019-12-13 17:20:29 +03:00
|
|
|
value=(readonly this.newPassword)
|
|
|
|
input=(action (mut this.newPassword) value="target.value")}}
|
2017-07-20 14:06:02 +03:00
|
|
|
</span>
|
2015-07-07 20:14:23 +03:00
|
|
|
{{/gh-form-group}}
|
2019-12-13 17:20:29 +03:00
|
|
|
{{#gh-form-group errors=this.errors hasValidated=this.hasValidated property="ne2Password"}}
|
2017-07-20 14:06:02 +03:00
|
|
|
<span class="gh-input-icon gh-icon-lock">
|
2018-03-19 12:57:31 +03:00
|
|
|
{{svg-jar "lock"}}
|
2018-02-28 14:44:03 +03:00
|
|
|
{{gh-text-input
|
|
|
|
type="password"
|
|
|
|
name="ne2password"
|
|
|
|
placeholder="Confirm Password"
|
|
|
|
class="password"
|
|
|
|
autocorrect="off"
|
2020-01-09 20:20:13 +03:00
|
|
|
shouldFocus=true
|
2019-12-13 17:20:29 +03:00
|
|
|
value=(readonly this.ne2Password)
|
|
|
|
input=(action (mut this.ne2Password) value="target.value")}}
|
2017-07-20 14:06:02 +03:00
|
|
|
</span>
|
2015-07-07 20:14:23 +03:00
|
|
|
{{/gh-form-group}}
|
2015-08-25 14:32:29 +03:00
|
|
|
|
2019-12-13 17:20:29 +03:00
|
|
|
{{gh-task-button "Reset Password" task=this.resetPassword class="gh-btn gh-btn-blue gh-btn-block gh-btn-icon" type="submit" autoWidth="false"}}
|
2015-07-08 01:14:55 +03:00
|
|
|
</form>
|
2015-08-25 14:32:29 +03:00
|
|
|
|
2019-12-13 17:20:29 +03:00
|
|
|
<p class="main-error">{{this.flowErrors}} </p>
|
2015-07-08 01:14:55 +03:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|