blob: 90fd68e1a6dc50adb42b49494e49f1811aa8aa21 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
<title>Sign In</title>
</head>
<body>
<h1>Sign In Page</h1>
<p>This is a placeholder for the sign-in page.</p>
<form action="/signin" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<br><br>
<button type="submit">Sign In</button>
</form>
</body>
</html>