mirror of
https://github.com/rjNemo/auth
synced 2026-06-06 08:26:39 +00:00
32 lines
836 B
HTML
32 lines
836 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>auth test</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1>Login</h1>
|
|
<p>
|
|
This is a test page for the authentication system. Please log in to
|
|
continue.
|
|
</p>
|
|
<form method="post" action="/login">
|
|
<input
|
|
type="email"
|
|
id="email"
|
|
placeholder="Enter your email"
|
|
required
|
|
autofocus
|
|
/>
|
|
<input type="password" id="password" placeholder="password" required />
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|