Carbon/src/login.pug

29 lines
948 B
Plaintext

doctype html
html
head
meta(charset="utf-8")
link(rel="stylesheet" type="text/css" href=getStatic("/sass/login.sass"))
title Carbon
meta(name="viewport" content="width=device-width, initial-scale=1")
body
main.main
.center-login-container
h1 Welcome to the Matrix!
form.login-form
.data-input
.form-input-container
label(for="login") Username
input(type="text" name="login" autocomplete="username" required)#login
.form-input-container
label(for="password") Password
input(name="password" autocomplete="current-password" type="password" required)#password
.form-input-container
label(for="homeserver") Homeserver
input(type="text" name="homeserver" value="matrix.org" required)#homeserver
.form-input-container
input(type="submit" value="Login")