relay requesting (and maybe verifying) to the user

This commit is contained in:
2025-04-30 18:03:56 +03:00
parent 991a4f29a6
commit 92fd491194
22 changed files with 968 additions and 222 deletions

23
views/login.pug Normal file
View File

@@ -0,0 +1,23 @@
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="tsparticles")
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")