27 lines
673 B
Plaintext
27 lines
673 B
Plaintext
|
extends layout.pug
|
||
|
block title
|
||
|
|Icy Network - Log In
|
||
|
|
||
|
block body
|
||
|
.wrapper
|
||
|
.boxcont
|
||
|
.box#login
|
||
|
.left
|
||
|
h1 Log in
|
||
|
if message
|
||
|
if message.error
|
||
|
.message.error
|
||
|
else
|
||
|
.message
|
||
|
span #{message.text}
|
||
|
form#loginForm(method="POST", action="")
|
||
|
input(type="hidden", name="csrf", value=csrf)
|
||
|
label(for="username") Username or Email Address
|
||
|
input(type="text", name="username", id="username")
|
||
|
label(for="password") Password
|
||
|
input(type="password", name="password", id="password")
|
||
|
input(type="submit", value="Log in")
|
||
|
a#create(href="/register") Create an account
|
||
|
.right
|
||
|
h3 More options
|