16 lines
396 B
HTML
16 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>
|