not pretty login

This commit is contained in:
kaipher7
2026-02-26 17:50:32 -07:00
parent 372799f13b
commit e893ded28c
2 changed files with 129 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Thyme Crunch Login</title>
<link rel="stylesheet" href="css/login.css">
</head>
<body>
<header class="top-header">
<h1 class="site-name">Thyme Crunch</h1>
</header>
<!-- Main Content -->
<main class="main-content">
<div class="login-box">
<h2>User Login</h2>
<form action="AuthController" method="post">
<label for="username">Username</label>
<input type="text" id="user" name="user" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
<button type="submit">Enter</button>
</form>
</div>
</main>
</div>
</body>
</html>