Add login pug file

This commit is contained in:
Bad 2020-10-19 10:16:16 +02:00
parent 6b97b226e6
commit a1e15f3deb
3 changed files with 28 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,9 +1,10 @@
# Generated files
node_modules
build
# Editor artifacts
.vscode
*~
\#*#
.#*
._*
._*

View File

@ -108,5 +108,10 @@ module.exports = [
type: "pug",
source: "/home.pug",
target: "/index.html"
},
{
type: "pug",
source: "/login.pug",
target: "/login.html"
}
]

21
src/login.pug Normal file
View File

@ -0,0 +1,21 @@
doctype html
html
head
meta(charset="utf-8")
link(rel="stylesheet" type="text/css" href=getStatic("/sass/main.sass"))
title Carbon
body
main.main
form
div
label(for="login") Username
input(type="text" name="login" autocomplete="username" placeholder="example:matrix.org" required)#login
div
label(for="password") Password
input(type="text" name="password" autocomplete="current-password" required)#password
div
label(for="homeserver") Homeserver
input(type="text" name="homeserver" value="matrix.org" required)#homeserver
div
input(type="submit" value="Login")