mirror of https://github.com/calzoneman/sync.git
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
|
doctype html
|
||
|
html(lang="en")
|
||
|
head
|
||
|
include head
|
||
|
mixin head()
|
||
|
body
|
||
|
#wrap
|
||
|
nav.navbar.navbar-inverse.navbar-fixed-top(role="navigation")
|
||
|
include nav
|
||
|
mixin navheader()
|
||
|
#nav-collapsible.collapse.navbar-collapse
|
||
|
ul.nav.navbar-nav
|
||
|
mixin navdefaultlinks("/account/passwordrecover/")
|
||
|
mixin navloginlogout("/account/passwordrecover/")
|
||
|
section#mainpage
|
||
|
.container
|
||
|
.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
|
||
|
.alert.alert-danger.center.messagebox
|
||
|
strong Password recovery failed
|
||
|
p= recoverErr
|
||
|
include footer
|
||
|
mixin footer()
|