mirror of https://github.com/calzoneman/sync.git
17 lines
708 B
Plaintext
17 lines
708 B
Plaintext
extends layout.pug
|
|
|
|
block content
|
|
.col-lg-6.col-lg-offset-3.col-md-6.col-md-offset-3
|
|
h3 Recover Password
|
|
if recovered
|
|
.alert.alert-success.center.messagebox
|
|
strong Your password has been changed
|
|
p Your account has been assigned the temporary password <code>#{recoverPw}</code>. You may now use this password to log in and choose a new password by visiting the <a href="/account/edit">change password/email</a> page.
|
|
else if confirm
|
|
form(role="form", method="POST")
|
|
button.btn.btn-primary.btn-block(type="submit") Click here to reset password
|
|
else
|
|
.alert.alert-danger.center.messagebox
|
|
strong Password recovery failed
|
|
p= recoverErr
|