24 lines
598 B
Plaintext
24 lines
598 B
Plaintext
|
extends ../layout.pug
|
||
|
block title
|
||
|
|Icy Network - Reset Password
|
||
|
|
||
|
block body
|
||
|
.wrapper
|
||
|
.boxcont
|
||
|
.box#totpcheck
|
||
|
h1 Reset your password
|
||
|
p Enter your email below in order to reset your password.
|
||
|
if message.text
|
||
|
if message.error
|
||
|
.message.error
|
||
|
span #{message.text}
|
||
|
else
|
||
|
.message
|
||
|
span #{message.text}
|
||
|
if !sent
|
||
|
form#loginForm(method="POST", action=post)
|
||
|
input(type="hidden", name="csrf", value=csrf)
|
||
|
label(for="email") Email Address
|
||
|
input(type="email", name="email", id="email")
|
||
|
input(type="submit", value="Continue")
|