18 lines
497 B
HTML
18 lines
497 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="ja">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>ログイン</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>ログイン</h1>
|
||
|
<form method="POST">
|
||
|
<label for="user_id">ユーザーID:</label>
|
||
|
<input type="text" id="user_id" name="user_id" required><br>
|
||
|
<label for="password">パスワード:</label>
|
||
|
<input type="password" id="password" name="password" required><br>
|
||
|
<button type="submit">ログイン</button>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|