fix weird login mismatch

This commit is contained in:
Adora Laura Kalb 2023-05-04 17:18:51 +02:00
parent e35b10d151
commit fec2e2afd4
Signed by: adoralaura
GPG key ID: 7A4552166FC8C056

View file

@ -1,22 +1,43 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en_US"> <html lang="en">
<head> <head>
<meta charset='utf-8'> <meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'> <meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title> <title>Login - go-urlsh</title>
<meta name='viewport' content='width=device-width, initial-scale=1'> <meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css"> <link rel="stylesheet" href="/admin/pico.min.css">
<style>
</style>
</head> </head>
<body> <body>
<h3 id="form-elements">Form elements</h3> <main class="container">
<form method="post" action="/admin/login"> <article class="grid">
<label for="username">Username</label> <div>
<input type="text" name="username" id="username" placeholder="username"> <hgroup>
<h1 style='--color: var(--h1-color); font-weight: var(--font-weight); font-size: var(--font-size); font-family: var(--font-family);'>Sign in</h1>
</hgroup>
<form method="post" action="/admin/login" style="margin-bottom: 0;" autocomplete="off">
<label for="username">Username</label>
<input type="text" name="username" id="username" placeholder="Username">
<label for="password">Password</label> <label for="password">Password</label>
<input type="hidden" name="password" id="password" placeholder="password"> <input type="password" name="password" id="password" placeholder="*******">
<input type="submit" value="Login"> <fieldset>
</form> <label for="remember">
<input type="checkbox" role="switch" id="remember" name="remember" />
Stay logged in
</label>
</fieldset>
<input type="submit" value="Login" class="contrast">
</form>
</div>
</article>
</main>
</body> </body>
</html>
</html>