Files
moon-gaming/testacounts/index.html
T
2025-03-12 04:07:16 +00:00

31 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login and Sign Up</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="container">
<h1>Login</h1>
<form id="loginForm">
<label for="loginUsername">Username:</label>
<input type="text" id="loginUsername" required>
<label for="loginPassword">Password:</label>
<input type="password" id="loginPassword" required>
<button type="submit">Login</button>
</form>
<h1>Sign Up</h1>
<form id="signUpForm">
<label for="signUpUsername">Username:</label>
<input type="text" id="signUpUsername" required>
<label for="signUpPassword">Password:</label>
<input type="password" id="signUpPassword" required>
<button type="submit">Sign Up</button>
</form>
</div>
<script src="./app.js"></script>
</body>
</html>