html
    head
        title Captcha Aggregator Login
        meta(charset="utf-8")
        meta(name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no")
        meta(name="description" content="")
        link(href="css/index.css" rel="stylesheet")
    body
        div(id="main")
            main(class="box")
                h2 Captcha Aggregator
                form(id="loginForm")
                    div(class="inputBox")
                        label(for="username") Username
                        input(id="username" placeholder="username" required=true)
                    div(class="inputBox")
                        label(for="password") Password
                        input(type="password" name="password" id="password" placeholder="password" required=true)
                    div
                        button(type="submit" name="" style="float: center;") Log in
    script(type="text/javascript" src="js/login.js")