mizzzuno commited on
Commit
a7faf54
·
verified ·
1 Parent(s): ddf56da

Update templates/userSelect.html

Browse files
Files changed (1) hide show
  1. templates/userSelect.html +354 -416
templates/userSelect.html CHANGED
@@ -1,416 +1,354 @@
1
- <!DOCTYPE html>
2
- <html lang="ja">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>メンバー選択 - JustTalk</title>
7
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.0/css/all.css" />
8
- <style>
9
- body {
10
- font-family: 'Helvetica Neue', Arial, sans-serif;
11
- margin: 0;
12
- padding: 0;
13
- background: linear-gradient(135deg, #2c3e50, #1f2937);
14
- color: white;
15
- min-height: 100vh;
16
- display: flex;
17
- align-items: center;
18
- justify-content: center;
19
- }
20
-
21
- .container {
22
- max-width: 500px;
23
- margin: 0 auto;
24
- padding: 30px;
25
- border: 5px solid rgba(255, 255, 255, 0.2);
26
- border-radius: 1rem;
27
- background-color: rgba(0, 0, 0, 0.3);
28
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
29
- width: 90%;
30
- position: relative;
31
- }
32
-
33
- h1 {
34
- color: white;
35
- text-align: center;
36
- margin-bottom: 30px;
37
- font-size: 1.8rem;
38
- text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
39
- }
40
-
41
- .user-list {
42
- background-color: rgba(255, 255, 255, 0.1);
43
- border-radius: 10px;
44
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
45
- padding: 15px;
46
- margin-bottom: 25px;
47
- max-height: 350px;
48
- overflow-y: auto;
49
- }
50
-
51
- .user-item {
52
- display: flex;
53
- align-items: center;
54
- padding: 12px 15px;
55
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
56
- transition: background-color 0.2s;
57
- }
58
-
59
- .user-item:last-child {
60
- border-bottom: none;
61
- }
62
-
63
- .user-item:hover {
64
- background-color: rgba(255, 255, 255, 0.05);
65
- }
66
-
67
- .user-item label {
68
- margin-left: 12px;
69
- font-size: 16px;
70
- cursor: pointer;
71
- flex-grow: 1;
72
- color: white;
73
- }
74
-
75
- input[type="checkbox"] {
76
- cursor: pointer;
77
- width: 18px;
78
- height: 18px;
79
- accent-color: #3498db;
80
- }
81
-
82
- .button-container {
83
- display: flex;
84
- justify-content: space-between;
85
- margin-top: 25px;
86
- }
87
-
88
- button {
89
- background-color: #3498db;
90
- color: white;
91
- border: none;
92
- border-radius: 8px;
93
- padding: 12px 20px;
94
- font-size: 16px;
95
- cursor: pointer;
96
- transition: background-color 0.3s, transform 0.1s;
97
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
98
- }
99
-
100
- button:hover {
101
- background-color: #2980b9;
102
- }
103
-
104
- button:active {
105
- transform: translateY(1px);
106
- }
107
-
108
- button:disabled {
109
- background-color: #95a5a6;
110
- cursor: not-allowed;
111
- opacity: 0.7;
112
- }
113
-
114
- button.secondary {
115
- background-color: rgba(255, 255, 255, 0.2);
116
- }
117
-
118
- button.secondary:hover {
119
- background-color: rgba(255, 255, 255, 0.3);
120
- }
121
-
122
- .selected-count {
123
- margin: 15px 0;
124
- text-align: center;
125
- font-weight: bold;
126
- color: #3498db;
127
- font-size: 18px;
128
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
129
- }
130
-
131
- .no-users {
132
- text-align: center;
133
- padding: 30px;
134
- color: rgba(255, 255, 255, 0.7);
135
- font-style: italic;
136
- }
137
-
138
- .loading {
139
- text-align: center;
140
- padding: 30px;
141
- color: white;
142
- }
143
-
144
- .spinner {
145
- border: 4px solid rgba(255, 255, 255, 0.1);
146
- width: 36px;
147
- height: 36px;
148
- border-radius: 50%;
149
- border-left-color: #3498db;
150
- animation: spin 1s linear infinite;
151
- margin: 0 auto 15px;
152
- }
153
-
154
- @keyframes spin {
155
- 0% { transform: rotate(0deg); }
156
- 100% { transform: rotate(360deg); }
157
- }
158
-
159
- /* User Avatar */
160
- .user-avatar {
161
- width: 30px;
162
- height: 30px;
163
- background: rgba(255, 255, 255, 0.2);
164
- border-radius: 50%;
165
- display: flex;
166
- align-items: center;
167
- justify-content: center;
168
- font-size: 14px;
169
- margin-left: 10px;
170
- }
171
-
172
- /* Hamburger Menu Styles */
173
- #menu {
174
- position: absolute;
175
- top: 0;
176
- left: 0;
177
- z-index: 10;
178
- transform: translateX(-100%);
179
- visibility: hidden;
180
- opacity: 0;
181
- background-color: rgb(31, 41, 55);
182
- transition: transform 0.3s ease-in-out, visibility 0s 0.3s,
183
- opacity 0.3s ease-in-out;
184
- backdrop-filter: blur(10px);
185
- border-right: 1px solid rgba(255, 255, 255, 0.2);
186
- height: 100%;
187
- }
188
-
189
- #menu.open {
190
- transform: translateX(0);
191
- visibility: visible;
192
- opacity: 1;
193
- transition: transform 0.3s ease-in-out, visibility 0s 0s,
194
- opacity 0.3s ease-in-out;
195
- }
196
-
197
- #menu button {
198
- transition: background-color 0.2s ease;
199
- background-color: rgba(0, 0, 0, 0.1);
200
- margin: 2px;
201
- border-radius: 5px;
202
- display: flex;
203
- align-items: center;
204
- justify-content: flex-start;
205
- gap: 10px;
206
- padding: 0.75rem 1rem;
207
- width: 100%;
208
- text-align: left;
209
- border: none;
210
- color: #fff;
211
- font-size: 1rem;
212
- cursor: pointer;
213
- box-shadow: none;
214
- }
215
-
216
- #menu button:hover {
217
- background-color: rgba(55, 65, 81, 0.7);
218
- }
219
-
220
- #menuButton {
221
- background-color: rgba(255, 255, 255, 0.1);
222
- border: none;
223
- border-radius: 50%;
224
- padding: 0.5rem;
225
- cursor: pointer;
226
- transition: background-color 0.2s ease;
227
- position: absolute;
228
- top: 20px;
229
- left: 20px;
230
- box-shadow: none;
231
- font-size: 18px;
232
- width: 40px;
233
- height: 40px;
234
- display: flex;
235
- align-items: center;
236
- justify-content: center;
237
- }
238
-
239
- #menuButton:hover {
240
- background-color: rgba(255, 255, 255, 0.2);
241
- }
242
-
243
- /* Select All Button */
244
- .select-controls {
245
- display: flex;
246
- justify-content: center;
247
- margin-bottom: 15px;
248
- gap: 10px;
249
- }
250
-
251
- .select-button {
252
- background-color: rgba(255, 255, 255, 0.15);
253
- color: white;
254
- border: none;
255
- border-radius: 5px;
256
- padding: 8px 15px;
257
- font-size: 14px;
258
- cursor: pointer;
259
- transition: background-color 0.2s;
260
- }
261
-
262
- .select-button:hover {
263
- background-color: rgba(255, 255, 255, 0.25);
264
- }
265
-
266
- /* Delete Button */
267
- .delete-button {
268
- background-color: transparent;
269
- color: #e74c3c;
270
- border: none;
271
- border-radius: 50%;
272
- width: 30px;
273
- height: 30px;
274
- display: flex;
275
- align-items: center;
276
- justify-content: center;
277
- cursor: pointer;
278
- transition: background-color 0.2s;
279
- padding: 0;
280
- margin-left: 5px;
281
- box-shadow: none;
282
- }
283
-
284
- .delete-button:hover {
285
- background-color: rgba(231, 76, 60, 0.2);
286
- }
287
-
288
- /* Modal Dialog */
289
- .modal {
290
- display: none;
291
- position: fixed;
292
- z-index: 100;
293
- left: 0;
294
- top: 0;
295
- width: 100%;
296
- height: 100%;
297
- background-color: rgba(0, 0, 0, 0.5);
298
- align-items: center;
299
- justify-content: center;
300
- }
301
-
302
- .modal-content {
303
- background-color: rgb(31, 41, 55);
304
- border-radius: 10px;
305
- padding: 20px;
306
- width: 90%;
307
- max-width: 400px;
308
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
309
- border: 1px solid rgba(255, 255, 255, 0.1);
310
- }
311
-
312
- .modal-title {
313
- font-size: 18px;
314
- margin-bottom: 15px;
315
- color: white;
316
- }
317
-
318
- .modal-text {
319
- margin-bottom: 20px;
320
- color: rgba(255, 255, 255, 0.9);
321
- }
322
-
323
- .modal-buttons {
324
- display: flex;
325
- justify-content: flex-end;
326
- gap: 10px;
327
- }
328
-
329
- .modal-cancel {
330
- background-color: rgba(255, 255, 255, 0.2);
331
- color: white;
332
- }
333
-
334
- .modal-delete {
335
- background-color: #e74c3c;
336
- }
337
-
338
- .modal-delete:hover {
339
- background-color: #c0392b;
340
- }
341
- </style>
342
- </head>
343
- <body onclick="closeMenu(event)">
344
- <div class="container">
345
- <!-- Hamburger Menu Button -->
346
- <button
347
- id="menuButton"
348
- class="text-white focus:outline-none"
349
- onclick="toggleMenu(event)"
350
- >
351
- <i class="fas fa-bars"></i>
352
- </button>
353
-
354
- <!-- Menu Content -->
355
- <div
356
- id="menu"
357
- 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"
358
- >
359
- <div class="px-4 py-2 text-lg font-semibold">メニュー</div>
360
- <button onclick="showUserRegister()">
361
- <i class="fas fa-user-plus"></i> メンバーを追加
362
- </button>
363
- <button onclick="showIndex()">
364
- <i class="fas fa-home"></i> ホーム画面
365
- </button>
366
- <button onclick="showResults()">
367
- <i class="fas fa-chart-bar"></i> フィードバックを表示
368
- </button>
369
- <button onclick="showTalkDetail()">
370
- <i class="fas fa-comments"></i> 会話詳細を表示
371
- </button>
372
- <button onclick="resetAction()">
373
- <i class="fas fa-redo"></i> リセット
374
- </button>
375
- <button onclick="toggleMenu(event)">
376
- <i class="fas fa-times"></i> 閉じる
377
- </button>
378
- </div>
379
-
380
- <h1>会話分析に使用するメンバーを選択</h1>
381
-
382
- <div class="select-controls">
383
- <button class="select-button" onclick="selectAllUsers()">すべて選択</button>
384
- <button class="select-button" onclick="deselectAllUsers()">選択解除</button>
385
- </div>
386
-
387
- <div class="user-list" id="userList">
388
- <div class="loading">
389
- <div class="spinner"></div>
390
- <p>メンバーリストを読み込み中...</p>
391
- </div>
392
- </div>
393
-
394
- <div class="selected-count" id="selectedCount">選択中: 0人</div>
395
-
396
- <div class="button-container">
397
- <button class="secondary" onclick="location.href='/userregister'">新規登録</button>
398
- <button id="proceedButton" onclick="proceedWithSelectedUsers()" disabled>選択して次へ</button>
399
- </div>
400
- </div>
401
-
402
- <!-- 削除確認モーダル -->
403
- <div id="deleteModal" class="modal">
404
- <div class="modal-content">
405
- <div class="modal-title">メンバーの削除</div>
406
- <div class="modal-text" id="deleteModalText">このメンバーを削除しますか?</div>
407
- <div class="modal-buttons">
408
- <button class="modal-cancel" onclick="hideDeleteModal()">キャンセル</button>
409
- <button class="modal-delete" onclick="confirmDelete()">削除</button>
410
- </div>
411
- </div>
412
- </div>
413
- <script src="{{ url_for('static', filename='process1.js') }}"></script>
414
-
415
- </body>
416
- </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="ja">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>メンバー選択 - JustTalk</title>
7
+ <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}">
8
+ <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='menu.css') }}">
9
+ <script src="https://use.fontawesome.com/releases/v5.10.0/js/all.js"></script>
10
+ <style>
11
+ .container {
12
+ max-width: 500px;
13
+ margin: 0 auto;
14
+ padding: 30px;
15
+ border: 5px solid rgba(255, 255, 255, 0.2);
16
+ border-radius: 1rem;
17
+ background-color: rgba(0, 0, 0, 0.3);
18
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
19
+ width: 90%;
20
+ position: relative;
21
+ }
22
+
23
+ h1 {
24
+ color: white;
25
+ text-align: center;
26
+ margin-bottom: 30px;
27
+ font-size: 1.8rem;
28
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
29
+ }
30
+
31
+ .user-list {
32
+ background-color: rgba(255, 255, 255, 0.1);
33
+ border-radius: 10px;
34
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
35
+ padding: 15px;
36
+ margin-bottom: 25px;
37
+ max-height: 350px;
38
+ overflow-y: auto;
39
+ }
40
+
41
+ .user-item {
42
+ display: flex;
43
+ align-items: center;
44
+ padding: 12px 15px;
45
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
46
+ transition: background-color 0.2s;
47
+ }
48
+
49
+ .user-item:last-child {
50
+ border-bottom: none;
51
+ }
52
+
53
+ .user-item:hover {
54
+ background-color: rgba(255, 255, 255, 0.05);
55
+ }
56
+
57
+ .user-item label {
58
+ margin-left: 12px;
59
+ font-size: 16px;
60
+ cursor: pointer;
61
+ flex-grow: 1;
62
+ color: white;
63
+ }
64
+
65
+ input[type="checkbox"] {
66
+ cursor: pointer;
67
+ width: 18px;
68
+ height: 18px;
69
+ accent-color: #3498db;
70
+ }
71
+
72
+ .button-container {
73
+ display: flex;
74
+ justify-content: space-between;
75
+ margin-top: 25px;
76
+ }
77
+
78
+ button {
79
+ background-color: #3498db;
80
+ color: white;
81
+ border: none;
82
+ border-radius: 8px;
83
+ padding: 12px 20px;
84
+ font-size: 16px;
85
+ cursor: pointer;
86
+ transition: background-color 0.3s, transform 0.1s;
87
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
88
+ }
89
+
90
+ button:hover {
91
+ background-color: #2980b9;
92
+ }
93
+
94
+ button:active {
95
+ transform: translateY(1px);
96
+ }
97
+
98
+ button:disabled {
99
+ background-color: #95a5a6;
100
+ cursor: not-allowed;
101
+ opacity: 0.7;
102
+ }
103
+
104
+ button.secondary {
105
+ background-color: rgba(255, 255, 255, 0.2);
106
+ }
107
+
108
+ button.secondary:hover {
109
+ background-color: rgba(255, 255, 255, 0.3);
110
+ }
111
+
112
+ .selected-count {
113
+ margin: 15px 0;
114
+ text-align: center;
115
+ font-weight: bold;
116
+ color: #3498db;
117
+ font-size: 18px;
118
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
119
+ }
120
+
121
+ .no-users {
122
+ text-align: center;
123
+ padding: 30px;
124
+ color: rgba(255, 255, 255, 0.7);
125
+ font-style: italic;
126
+ }
127
+
128
+ .loading {
129
+ text-align: center;
130
+ padding: 30px;
131
+ color: white;
132
+ }
133
+
134
+ .spinner {
135
+ border: 4px solid rgba(255, 255, 255, 0.1);
136
+ width: 36px;
137
+ height: 36px;
138
+ border-radius: 50%;
139
+ border-left-color: #3498db;
140
+ animation: spin 1s linear infinite;
141
+ margin: 0 auto 15px;
142
+ }
143
+
144
+ @keyframes spin {
145
+ 0% {
146
+ transform: rotate(0deg);
147
+ }
148
+ 100% {
149
+ transform: rotate(360deg);
150
+ }
151
+ }
152
+
153
+ /* User Avatar */
154
+ .user-avatar {
155
+ width: 30px;
156
+ height: 30px;
157
+ background: rgba(255, 255, 255, 0.2);
158
+ border-radius: 50%;
159
+ display: flex;
160
+ align-items: center;
161
+ justify-content: center;
162
+ font-size: 14px;
163
+ margin-left: 10px;
164
+ }
165
+
166
+ /* Select All Button */
167
+ .select-controls {
168
+ display: flex;
169
+ justify-content: center;
170
+ margin-bottom: 15px;
171
+ gap: 10px;
172
+ }
173
+
174
+ .select-button {
175
+ background-color: rgba(255, 255, 255, 0.15);
176
+ color: white;
177
+ border: none;
178
+ border-radius: 5px;
179
+ padding: 8px 15px;
180
+ font-size: 14px;
181
+ cursor: pointer;
182
+ transition: background-color 0.2s;
183
+ }
184
+
185
+ .select-button:hover {
186
+ background-color: rgba(255, 255, 255, 0.25);
187
+ }
188
+
189
+ /* Delete Button */
190
+ .delete-button {
191
+ background-color: transparent;
192
+ color: #e74c3c;
193
+ border: none;
194
+ border-radius: 50%;
195
+ width: 30px;
196
+ height: 30px;
197
+ display: flex;
198
+ align-items: center;
199
+ justify-content: center;
200
+ cursor: pointer;
201
+ transition: background-color 0.2s;
202
+ padding: 0;
203
+ margin-left: 5px;
204
+ box-shadow: none;
205
+ }
206
+
207
+ .delete-button:hover {
208
+ background-color: rgba(231, 76, 60, 0.2);
209
+ }
210
+
211
+ /* Modal Dialog */
212
+ .modal {
213
+ display: none;
214
+ position: fixed;
215
+ z-index: 100;
216
+ left: 0;
217
+ top: 0;
218
+ width: 100%;
219
+ height: 100%;
220
+ background-color: rgba(0, 0, 0, 0.5);
221
+ align-items: center;
222
+ justify-content: center;
223
+ }
224
+
225
+ .modal-content {
226
+ background-color: rgb(31, 41, 55);
227
+ border-radius: 10px;
228
+ padding: 20px;
229
+ width: 90%;
230
+ max-width: 400px;
231
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
232
+ border: 1px solid rgba(255, 255, 255, 0.1);
233
+ }
234
+
235
+ .modal-title {
236
+ font-size: 18px;
237
+ margin-bottom: 15px;
238
+ color: white;
239
+ }
240
+
241
+ .modal-text {
242
+ margin-bottom: 20px;
243
+ color: rgba(255, 255, 255, 0.9);
244
+ }
245
+
246
+ .modal-buttons {
247
+ display: flex;
248
+ justify-content: flex-end;
249
+ gap: 10px;
250
+ }
251
+
252
+ .modal-cancel {
253
+ background-color: rgba(255, 255, 255, 0.2);
254
+ color: white;
255
+ }
256
+
257
+ .modal-delete {
258
+ background-color: #e74c3c;
259
+ }
260
+
261
+ .modal-delete:hover {
262
+ background-color: #c0392b;
263
+ }
264
+ </style>
265
+ </head>
266
+ <body onclick="closeMenu(event)">
267
+ <div class="container">
268
+ <!-- Hamburger Menu Button -->
269
+ <button
270
+ id="menuButton"
271
+ class="text-white focus:outline-none"
272
+ onclick="toggleMenu(event)"
273
+ >
274
+ <i class="fas fa-bars"></i>
275
+ </button>
276
+
277
+ <!-- Menu Content -->
278
+ <div
279
+ id="menu"
280
+ 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"
281
+ >
282
+ <div class="px-4 py-2 text-lg font-semibold">メニュー</div>
283
+ <button onclick="showUserRegister()">
284
+ <i class="fas fa-user-plus"></i> メンバーを追加
285
+ </button>
286
+ <button onclick="showIndex()">
287
+ <i class="fas fa-home"></i> ホーム画面
288
+ </button>
289
+ <button onclick="showResults()">
290
+ <i class="fas fa-chart-bar"></i> フィードバックを表示
291
+ </button>
292
+ <button onclick="showTalkDetail()">
293
+ <i class="fas fa-comments"></i> 会話詳細を表示
294
+ </button>
295
+ <button onclick="resetAction()">
296
+ <i class="fas fa-redo"></i> リセット
297
+ </button>
298
+ <button onclick="toggleMenu(event)">
299
+ <i class="fas fa-times"></i> 閉じる
300
+ </button>
301
+ </div>
302
+
303
+ <h1>会話分析に使用するメンバーを選択</h1>
304
+
305
+ <div class="select-controls">
306
+ <button class="select-button" onclick="selectAllUsers()">
307
+ すべて選択
308
+ </button>
309
+ <button class="select-button" onclick="deselectAllUsers()">
310
+ 選択解除
311
+ </button>
312
+ </div>
313
+
314
+ <div class="user-list" id="userList">
315
+ <div class="loading">
316
+ <div class="spinner"></div>
317
+ <p>メンバーリストを読み込み中...</p>
318
+ </div>
319
+ </div>
320
+
321
+ <div class="selected-count" id="selectedCount">選択中: 0人</div>
322
+
323
+ <div class="button-container">
324
+ <button class="secondary" onclick="location.href='/userregister'">
325
+ 新規登録
326
+ </button>
327
+ <button
328
+ id="proceedButton"
329
+ onclick="proceedWithSelectedUsers()"
330
+ disabled
331
+ >
332
+ 選択して次へ
333
+ </button>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- 削除確認モーダル -->
338
+ <div id="deleteModal" class="modal">
339
+ <div class="modal-content">
340
+ <div class="modal-title">メンバーの削除</div>
341
+ <div class="modal-text" id="deleteModalText">
342
+ このメンバーを削除しますか?
343
+ </div>
344
+ <div class="modal-buttons">
345
+ <button class="modal-cancel" onclick="hideDeleteModal()">
346
+ キャンセル
347
+ </button>
348
+ <button class="modal-delete" onclick="confirmDelete()">削除</button>
349
+ </div>
350
+ </div>
351
+ </div>
352
+ <script src="{{ url_for('static', filename='process1.js') }}"></script>
353
+ </body>
354
+ </html>