This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
IcyNet.eu/views/login.pug

28 lines
722 B
Plaintext
Raw Normal View History

2017-08-02 21:24:01 +00:00
extends layout.pug
block title
|Icy Network - Log In
block body
.wrapper
.boxcont
.box#login
2017-08-23 21:42:55 +00:00
h1 Log in
2017-08-02 21:24:01 +00:00
.left
2017-08-24 20:02:52 +00:00
if message.text
2017-08-02 21:24:01 +00:00
if message.error
.message.error
2017-08-24 20:02:52 +00:00
span #{message.text}
2017-08-02 21:24:01 +00:00
else
.message
2017-08-24 20:02:52 +00:00
span #{message.text}
2017-08-02 21:24:01 +00:00
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
include includes/external.pug