Files
thymecrunch/demo/login.html
T
2026-03-03 00:29:42 -07:00

34 lines
842 B
HTML

<!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>
<h3> OR <a href="create-account.html">SIGN UP</a> FOR AN ACCOUNT </h3>
</div>
</main>
</div>
</body>
</html>