mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
2020c3dddb
Closes #1471 - add api and User model methods for generating and validating tokens - add routes and handlers for reset password pages - add client styles and views for reset password form - some basic integration tests for User model methods
10 lines
414 B
Handlebars
10 lines
414 B
Handlebars
<form id="reset" method="post" novalidate="novalidate">
|
|
<div class="password-wrap">
|
|
<input class="password" type="password" placeholder="Password" name="newpassword" />
|
|
</div>
|
|
<div class="password-wrap">
|
|
<input class="password" type="password" placeholder="Confirm Password" name="ne2password" />
|
|
</div>
|
|
<button class="button-save" type="submit">Reset Password</button>
|
|
</form>
|