22 lines
596 B
Plaintext
22 lines
596 B
Plaintext
extends ../layout.pug
|
|
block title
|
|
|Icy Network - Password Required
|
|
|
|
block body
|
|
.container.mt-4.mb-4
|
|
h1 Enter your password
|
|
p This action requires your password to continue
|
|
if message.text
|
|
if message.error
|
|
.alert.alert-danger
|
|
span #{message.text}
|
|
else
|
|
.alert.alert-warning
|
|
span #{message.text}
|
|
form#loginForm(method="POST", action=post)
|
|
input(type="hidden", name="csrf", value=csrf)
|
|
.form-group
|
|
label(for="password") Password
|
|
input.form-control#password(type="password", name="password", autofocus)
|
|
button.btn.btn-primary(type="submit") Continue
|