2025-11-12 10:13:24 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Login</title>
|
|
|
|
|
<link rel="stylesheet" href="../assets/css/style.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="center">
|
|
|
|
|
<h2>Login</h2>
|
|
|
|
|
<form id="loginForm">
|
|
|
|
|
<input type="text" id="logUser" placeholder="Username" required>
|
|
|
|
|
<input type="password" id="logPass" placeholder="Password" required>
|
|
|
|
|
<button type="submit">Login</button>
|
|
|
|
|
</form>
|
2025-11-28 13:54:57 -05:00
|
|
|
<div class="error">
|
|
|
|
|
<p>Error Message</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="success">
|
|
|
|
|
<p>Login successful</p>
|
|
|
|
|
</div>
|
2025-11-12 10:13:24 -05:00
|
|
|
<div class="register">
|
|
|
|
|
<p>Don't have an account?</p>
|
2025-11-18 21:16:35 -05:00
|
|
|
<a href="/register" class="link">Register</a>
|
2025-11-12 10:13:24 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="module" src="login.js"></script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|