fix weird login mismatch
This commit is contained in:
parent
e35b10d151
commit
fec2e2afd4
1 changed files with 36 additions and 15 deletions
|
@ -1,22 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en_US">
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||
<title>Page Title</title>
|
||||
<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">
|
||||
<meta charset='utf-8'>
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||
<title>Login - go-urlsh</title>
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
||||
<link rel="stylesheet" href="/admin/pico.min.css">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h3 id="form-elements">Form elements</h3>
|
||||
<form method="post" action="/admin/login">
|
||||
<label for="username">Username</label>
|
||||
<input type="text" name="username" id="username" placeholder="username">
|
||||
<main class="container">
|
||||
<article class="grid">
|
||||
<div>
|
||||
<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>
|
||||
<input type="hidden" name="password" id="password" placeholder="password">
|
||||
<label for="password">Password</label>
|
||||
<input type="password" name="password" id="password" placeholder="*******">
|
||||
|
||||
<input type="submit" value="Login">
|
||||
</form>
|
||||
<fieldset>
|
||||
<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>
|
||||
</html>
|
||||
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue