29 lines
779 B
Plaintext
29 lines
779 B
Plaintext
|
extends layout.pug
|
||
|
block title
|
||
|
|Icy Network - Change User Email
|
||
|
|
||
|
block body
|
||
|
.wrapper
|
||
|
.boxcont
|
||
|
.box#totpcheck
|
||
|
h1 Change Your Email
|
||
|
if message.text
|
||
|
if message.error
|
||
|
.message.error
|
||
|
span #{message.text}
|
||
|
else
|
||
|
.message
|
||
|
span #{message.text}
|
||
|
form#loginForm(method="POST", action="")
|
||
|
input(type="hidden", name="csrf", value=csrf)
|
||
|
if email
|
||
|
label(for="email") Current Email Address
|
||
|
small Email Hint: #{email}
|
||
|
br
|
||
|
input(type="email", name="email", id="email")
|
||
|
label(for="email_new") New Email Address
|
||
|
input(type="email", name="email_new", id="email_new")
|
||
|
label(for="password") Password
|
||
|
input(type="password", name="password", id="password")
|
||
|
input(type="submit", value="Change")
|