Dislocker/templates/login.html
2024-06-04 09:36:29 +09:00

15 lines
396 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body>
<form method="POST">
<label for="user_id">User ID</label>
<input type="text" id="user_id" name="user_id" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</body>
</html>