File size: 710 Bytes
e66137c 5cbc71f e66137c 5cbc71f e66137c 5cbc71f e66137c 5cbc71f e66137c 5cbc71f e66137c 2cdc125 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Login</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h2>Sign In</h2>
<form id="loginForm">
<input type="text" id="loginUsername" placeholder="Username" required />
<input type="password" id="loginPassword" placeholder="Password" required />
<button type="submit">Login</button>
</form>
<p id="loginMessage"></p>
<p class="switch-page">
Don't have an account? <a href="signup.html">Sign up here</a>
</p>
</div>
<script src="script.js"></script>
</body>
</html>
|