34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
extends ../partials/layout.pug
|
|
|
|
block title
|
|
|Log in | Icy Network
|
|
|
|
block body
|
|
include ../partials/logo.pug
|
|
div.container
|
|
div.center-box.center-box--no-margin
|
|
h1 Log in
|
|
if message.text
|
|
if message.error
|
|
.alert.alert-danger
|
|
span #{message.text}
|
|
else
|
|
.alert.alert-success
|
|
span #{message.text}
|
|
|
|
form(method="post")
|
|
div.form-container
|
|
input#csrf(type="hidden", name="_csrf", value=csrf)
|
|
label.form-label(for="username") Username
|
|
input.form-control#username(type="text", name="username", placeholder="Username", autofocus, value=form.username)
|
|
label.form-label(for="password") Password
|
|
input.form-control#password(type="password", name="password", placeholder="Password")
|
|
button.btn.btn-primary(type="submit") Log in
|
|
div.btn-group.align-self-end
|
|
a.btn.btn-link(type="button" href="/register" + (query ? ('?' + query) : '')) Create a new account
|
|
|•
|
|
a.btn.btn-link(type="button" href="/login/password") Forgot password?
|
|
div.center-box-addon
|
|
p Icy Network is a Single-Sign-On service used by other applications.
|
|
p The website may use temporary cookies for storing your login session.
|