Merge pull request 'Add login pug file' (#1) from bad/Carbon:princess into princess
Reviewed-on: #1
This commit is contained in:
commit
872d53db5f
3 changed files with 28 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
# Generated files
|
||||
node_modules
|
||||
build
|
||||
|
||||
# Editor artifacts
|
||||
.vscode
|
||||
|
|
5
spec.js
5
spec.js
|
@ -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
21
src/login.pug
Normal 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")
|
Loading…
Reference in a new issue