Spaces:
Runtime error
Runtime error
humberger
Browse files- templates/reset.html +27 -24
templates/reset.html
CHANGED
|
@@ -107,31 +107,34 @@
|
|
| 107 |
</button>
|
| 108 |
|
| 109 |
<!-- Menu Content -->
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
|
|
|
|
|
|
| 134 |
</div>
|
|
|
|
| 135 |
<!-- Hamburger Menu End -->
|
| 136 |
|
| 137 |
<input type="button" id="select-all" value="全選択" />
|
|
|
|
| 107 |
</button>
|
| 108 |
|
| 109 |
<!-- Menu Content -->
|
| 110 |
+
<div
|
| 111 |
+
id="menu"
|
| 112 |
+
class="absolute top-0 left-0 h-full w-64 bg-gray-800 text-white transform -translate-x-full transition-transform duration-300 ease-in-out opacity-0 visibility-hidden"
|
| 113 |
+
>
|
| 114 |
+
<div class="px-4 py-2 text-lg font-semibold">メニュー</div>
|
| 115 |
+
<button onclick="showUserRegister()">
|
| 116 |
+
<i class="fas fa-user-plus"></i> メンバーを追加
|
| 117 |
+
</button>
|
| 118 |
+
<button onclick="showUserSelect()">
|
| 119 |
+
<i class="fas fa-users"></i> メンバーを選択
|
| 120 |
+
</button>
|
| 121 |
+
<button onclick="showRecorder()">
|
| 122 |
+
<i class="fas fa-microphone"></i> 録音画面を表示
|
| 123 |
+
</button>
|
| 124 |
+
<button onclick="showResults()">
|
| 125 |
+
<i class="fas fa-chart-bar"></i> フィードバックを表示
|
| 126 |
+
</button>
|
| 127 |
+
<button onclick="showTalkDetail()">
|
| 128 |
+
<i class="fas fa-comments"></i> 会話詳細を表示
|
| 129 |
+
</button>
|
| 130 |
+
<button onclick="resetAction()">
|
| 131 |
+
<i class="fas fa-redo"></i> リセット
|
| 132 |
+
</button>
|
| 133 |
+
<button onclick="toggleMenu(event)">
|
| 134 |
+
<i class="fas fa-times"></i> 閉じる
|
| 135 |
+
</button>
|
| 136 |
</div>
|
| 137 |
+
</div>
|
| 138 |
<!-- Hamburger Menu End -->
|
| 139 |
|
| 140 |
<input type="button" id="select-all" value="全選択" />
|