discord_intro_quiz_bot/web/templates/login.html

18 lines
497 B
HTML
Raw Normal View History

2024-08-03 10:29:46 +00:00
<!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>