Newer
Older
goodnight / views / login.pug
<!DOCTYPE html>
html(lang="de")
    head
        meta(charset="UTF-8")
        meta(name="viewport", content="width=device-width, initial-scale=1.0")
        meta(http-equiv="X-UA-Compatible", content="ie=edge")
        link(rel="stylesheet", href="style/core.css")
        title Login - Goodnight
    body
        .centerBox
            h1 Goodnight
            form(action="login", method="post", class="singleColumnForm")
                label(for="txtUsername") Benutzername:
                input#txtUsername(type="text", name="username", required, placeholder="user@example.de")
                label(for="txtPassword") Passwort:
                input#txtPassword(type="password", name="password", required)
                input(type="submit", value="Login")