JusTalk / templates /reset.html
rein0421's picture
Upload 8 files
5730461 verified
raw
history blame
1.36 kB
<!DOCTYPE html>
<html lang="ja" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>リセット画面</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body
class="bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 min-h-screen flex items-center justify-center"
>
<div
class="container mx-auto p-6 bg-white dark:bg-gray-800 shadow-lg rounded-2xl"
>
<h2 class="text-2xl font-semibold mb-4">メンバーを消去しますか?</h2>
<input type="button" id="select-all" value="全選択" />
<div id="memberCheckboxes">
<!--ここにチャックボックスを表示してほしい-->
</div>
<div class="flex justify-center gap-4">
<button
id="reset_btn"
class="bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded"
>
メンバー削除
</button>
<button
class="px-6 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors"
onclick="showRecorder()"
>
録音画面を表示
</button>
</div>
</div>
<script src="{{ url_for('static', filename='reset.js') }}"></script>
</body>
</html>