Compare commits

..

No commits in common. "872d53db5f4c3950dc8fcf49698a4faa24b7bcf5" and "6b97b226e694aefa5c57ae731026c4038fc7134b" have entirely different histories.

3 changed files with 1 additions and 28 deletions

3
.gitignore vendored
View file

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

View file

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

View file

@ -1,21 +0,0 @@
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")