-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoporte.html
614 lines (532 loc) · 32.8 KB
/
soporte.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
<!DOCTYPE html>
<html lang="es" data-bs-theme="dark">
<head>
<!-- Metadatos -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Enlaces a archivos externos -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/estilos.css">
<link rel="shortcut icon" href="img/Icon-Logo-Transparent-1.png" type="image/x-icon">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="js/click-spark-main/click-spark.js"></script>
<!-- Favicons -->
<link rel="shotcut icon" href="img/iconLogoLight.png" id="favicon-light" media="(prefers-color-scheme: light)">
<link rel="shotcut icon" href="img/iconLogoDark.png" id="favicon-dark" media="(prefers-color-scheme: dark)">
<script>
function updateFavicon() {
const faviconLight = document.getElementById('favicon-light');
const faviconDark = document.getElementById('favicon-dark');
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
faviconLight.remove();
document.head.appendChild(faviconDark);
} else {
faviconDark.remove();
document.head.appendChild(faviconLight);
}
}
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', updateFavicon);
// Llama a la función para establecer el favicon correcto al cargar la página
updateFavicon();
</script>
<!-- Título de la página -->
<title>Soporte | Eclipse Tournaments' CMS</title>
</head>
<body>
<click-spark style="--click-spark-color: #FFB94A; z-index: 99 !important;"></click-spark>
<div id="db-wrapper">
<!-- Sidebar -->
<div class="navbar-vertical">
<div class="d-flex flex-column flex-shrink-0 p-3" style="height: 100%;">
<a href="/"
class="d-flex align-items-center justify-content-center text-center mb-3 mb-md-0 link-body-emphasis text-decoration-none">
<img src="img/textLogoDark.png" alt="logo eclipse torunaments" width="200">
</a>
<hr>
<ul class="nav nav-pills flex-column">
<li class="nav-item">
<a href="dashboard.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-chart-line me-2 fs-5"></i>
Dashboard
</a>
</li>
<li>
<a href="calendario.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-calendar-days me-2 fs-5"></i>
Calendario
</a>
</li>
<li>
<a href="competiciones.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-trophy me-2 fs-5"></i>
Competiciones
</a>
</li>
<li>
<a href="equipos.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-house-flag me-2 fs-5"></i>
Equipos
</a>
</li>
<li>
<a href="usuarios.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-users me-2 fs-5"></i>
Usuarios
</a>
</li>
<li>
<a href="patrocinadores.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-handshake me-2 fs-5"></i>
Patrocinadores
</a>
</li>
<li>
<a href="noticias.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-newspaper me-2 fs-5"></i>
Notícias
</a>
</li>
<li>
<a href="soporte.html" class="nav-link fw-bold active d-flex align-items-center"
aria-current="page">
<i class="fa-solid fa-comments me-2 fs-5"></i>
Soporte
</a>
</li>
<li>
<a href="Accesos.html" class="nav-link link-body-emphasis d-flex align-items-center">
<i class="fa-solid fa-address-card me-2 fs-5"></i>
Accesos
</a>
</li>
</ul>
<hr>
<div class="d-flex justify-content-center align-items-center" style="height: 100%;">
<div class="card bg-azul shadow-none text-center mx-4 my-8">
<div class="card-body py-6">
<img src="img/security.svg" width="130" alt="">
<div class="mt-4">
<p class="text-light mb-3 fw-semibold">Acceso Restringido</p>
<p class="text-light" style="font-size: 12px;">Recuerda que todo el contenido en esta
plataforma es confidencial</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contenedor principal -->
<div id="page-content">
<!-- Barra de navegación -->
<nav class="px-3 py-2 mb-3 border-bottom bg-azul-claro">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<ul class="nav col-6 col-lg-auto mb-2 me-lg-3 justify-content-center mb-md-0">
<a id="toggle-sidebar-btn" class="text-gris"><i
class="fa-solid fa-bars fs-4 cursor-pointer"></i></a>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-auto " role="search">
<input type="search" class="form-control" placeholder="Buscar..." aria-label="Search">
</form>
<div class="text-end d-flex align-items-center">
<label class="switch me-3">
<input id="switch" type="checkbox">
<span class="slider"></span>
</label>
<div class="dropdown">
<a href="#"
class="d-flex align-items-center link-body-emphasis text-decoration-none dropdown-toggle"
data-bs-toggle="dropdown" aria-expanded="false">
<img src="img/profile.svg" alt="" width="32" height="32"
class="rounded-circle me-2 border">
<strong>Daniel Cumplido</strong>
</a>
<ul class="dropdown-menu text-small shadow">
<li><a class="dropdown-item" href="editarPerfil.html"><i
class="fa-solid fa-user me-2"></i>Editar
perfil</a>
</li>
<li><a class="dropdown-item" href="configuracion.html"><i
class="fa-solid fa-gear me-2"></i>Configuración</a>
</li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="index.html"><i
class="fa-solid fa-door-open me-2"></i>Cerrar
sesión</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- Contenido -->
<div class="container-fluid px-4 py-3">
<!-- Título -->
<div class="row">
<div class="col-lg-12 col-md-12 col-12">
<div class="border-bottom mb-4 d-lg-flex justify-content-between align-items-center">
<div class="mb-3 mb-lg-0">
<h1 class="mb-0 h1 fw-bold">Soporte</h1>
<nav style="--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%236c757d'/%3E%3C/svg%3E");"
aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="dashboard.html">Dashboard</a></li>
<li class="breadcrumb-item active" aria-current="page">Soporte</li>
</ol>
</nav>
</div>
<div class="d-flex">
<!-- <a href="crearCompeticion.html" class="btn btn-oro-outline"><i
class="fa-solid fa-plus"></i>
Crear
Competición</a> -->
</div>
</div>
</div>
</div>
<!-- Buscador y filtro -->
<div class="row justify-content-md-between mb-4 mb-xl-0 gx-3">
<!-- col -->
<div class="col-xl-2 col-lg-4 col-md-4 col-12">
<!-- search -->
<div class="mb-lg-4 mb-2">
<input type="search" class="form-control" placeholder="Buscar por nombre...">
</div>
</div>
<div class="row justify-content-end col 6">
<div class="col-xxl-2 col-lg-2 col-md-4 col-12">
<!-- Custom select -->
<select class="form-select">
<option value="">Filtro de tipo</option>
<option value="Inactivas">Sugerencias</option>
<option value="En Progreso">Colaboracion</option>
<option value="Resuelta">Consultas</option>
<option value="Denegada">Incidencia</option>
</select>
</div>
<div class="col-xxl-2 col-lg-2 col-md-4 col-12">
<!-- Custom select -->
<select class="form-select">
<option value="">Filtro de estado</option>
<option value="Inactivas">Inactivas</option>
<option value="En Progreso">En Progreso</option>
<option value="Resuelta">Resuelta</option>
<option value="Denegada">Denegada</option>
</select>
</div>
</div>
</div>
<!-- Tabla -->
<div class="row">
<!-- col -->
<div class="col-12">
<!-- card -->
<div class="card">
<!-- table -->
<div class="table-responsive overflow-y-hidden">
<!--
Sugerencias (Cambios o mejoras de la web)
Incidencia (Tecnica)
Colaboracion (Hacer torneo, Sponsor)-->
<table class="table mb-0 text-nowrap table-hover table-centered">
<thead class="">
<tr>
<th>Nombre</th>
<th>Fecha</th>
<th>Resolución</th>
<th>Tipo</th>
<th class="ps-5">Estado</th>
</tr>
</thead>
<tbody>
<!-- Primer work element -->
<tr id="triggerRow">
<td>
<div class="d-flex align-items-center">
<div class="rounded-3 border p-3 d-flex justify-content-center align-items-center"
style="min-width: 55px; min-height: 50px;">
<i class="fa-solid fa-lightbulb"></i>
</div>
<div class="ms-3">
<a href="#" class="text-light text-decoration-none fs-5"
data-bs-toggle="modal" data-bs-target="#modalNivelesAcceso">
Cambio de colores
</a>
</div>
</div>
</td>
<td class="align-middle">20 Abril, 2024</td>
<td class="align-middle">-</td>
<td class="align-middle e-3">
<p class="text-body-secondary fs-10 mb-0">Sugerencia</p>
</td>
<td class="align-middle ps-5">
<span class="badge text-bg-secondary">Inactiva</span>
</td>
</tr>
<!-- Segundo work element -->
<tr>
<td>
<div class="d-flex align-items-center">
<div class="rounded-3 border p-3 d-flex justify-content-center align-items-center"
style="min-width: 55px; min-height: 50px;">
<i class="fa-solid fa-gears" style="min-width: 20px;"></i>
</div>
<div class="ms-3">
<p class="mb-0"><a href="#"
class="text-light text-decoration-none fs-5">Cuenta
bloqueada</a></p>
</div>
</div>
</td>
<td class="align-middle">04 Abr, 2024</td>
<td class="align-middle">04 Abr, 2024</td>
<td class="align-middle e-3">
<p class="text-body-secondary fs-10 mb-0">Incidencia</p>
</td>
<td class="align-middle ps-5">
<span class="badge text-bg-warning">En Progreso</span>
</td>
</tr>
<!-- Tercer work element -->
<tr>
<td>
<div class="d-flex align-items-center">
<div class="rounded-3 border p-3 d-flex justify-content-center align-items-center"
style="min-width: 55px; min-height: 50px;">
<i class="fa-solid fa-gears" style="min-width: 20px;"></i>
</div>
<div class="ms-3">
<p class="mb-0"><a href="#"
class="text-light text-decoration-none fs-5">Problema de
acceso</a></p>
</div>
</div>
</td>
<td class="align-middle">04 Enero, 2024</td>
<td class="align-middle">10 Enero, 2024</td>
<td class="align-middle e-3">
<p class="text-body-secondary fs-10 mb-0">Incidencia</p>
</td>
<td class="align-middle ps-5">
<span class="badge text-bg-success">Resuelta</span>
</td>
</tr>
<!-- Cuarto work element -->
<tr>
<td>
<div class="d-flex align-items-center">
<div class="rounded-3 border p-3 d-flex justify-content-center align-items-center"
style="min-width: 55px; min-height: 50px;">
<i class="fa-solid fa-handshake" style="min-width: 20px;"></i>
</div>
<div class="ms-3">
<p class="mb-0"><a href="#"
class="text-light text-decoration-none fs-5">Partnership
con Redbull</a></p>
</div>
</div>
</td>
<td class="align-middle">31 Ene, 2024</td>
<td class="align-middle">21 Feb, 2024</td>
<td class="align-middle e-3">
<p class="text-body-secondary fs-10 mb-0">Colaboración</p>
</td>
<td class="align-middle ps-5">
<span class="badge text-bg-danger">Cancelado</span>
</td>
</tr>
<!-- Quinto work element -->
<tr>
<td>
<div class="d-flex align-items-center">
<div class="rounded-3 border p-3 d-flex justify-content-center align-items-center"
style="min-width: 55px; min-height: 50px;">
<i class="fa-solid fa-handshake" style="min-width: 20px;"></i>
</div>
<div class="ms-3">
<p class="mb-0"><a href="#"
class="text-light text-decoration-none fs-5">Colaboracion
con Circtuito Tormenta</a></p>
</div>
</div>
</td>
<td class="align-middle">1 Mar, 2024</td>
<td class="align-middle">15 Mar, 2024</td>
<td class="align-middle e-3">
<p class="text-body-secondary fs-10 mb-0">Colaboración</p>
</td>
<td class="align-middle ps-5">
<span class="badge text-bg-warning">En progreso</span>
</td>
</tr>
<!-- Sexto work element -->
<tr>
<td>
<div class="d-flex align-items-center">
<div class="rounded-3 border p-3 d-flex justify-content-center align-items-center"
style="min-width: 55px; min-height: 50px;">
<i class="fa-solid fa-clipboard-question"></i>
</div>
<div class="ms-3">
<p class="mb-0"><a href="#"
class="text-light text-decoration-none fs-5">Requisitos
para el torneo</a></p>
</div>
</div>
</td>
<td class="align-middle">9 Feb, 2024</td>
<td class="align-middle">9 Feb, 2024</td>
<td class="align-middle e-3">
<p class="text-body-secondary fs-10 mb-0">Consulta</p>
<!-- Esta funcion permite añadir un working progress bar -->
<!-- <div class="progress" style="height: 5px;">
<div role="progressbar" class="progress-bar bg-success"
aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"
style="width: 100%;"></div>
</div> -->
</td>
<td class="align-middle ps-5">
<span class="badge text-bg-success">Resuelta</span>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Card Footer -->
<div class="card-footer d-md-flex justify-content-between align-items-center">
<div>
<span>Mostrando tickets 1 a 10 de 12</span>
</div>
<nav>
<ul class="pagination mb-0 mt-2">
<li class="page-item disabled">
<a class="page-link mx-1 rounded" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"
fill="currentColor" class="bi bi-chevron-left" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z">
</path>
</svg>
</a>
</li>
<li class="page-item active">
<a class="page-link mx-1 rounded" href="#">1</a>
</li>
<li class="page-item">
<a class="page-link mx-1 rounded" href="#">2</a>
</li>
<li class="page-item">
<a class="page-link mx-1 rounded" href="#">3</a>
</li>
<li class="page-item">
<a class="page-link mx-1 rounded" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"
fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z">
</path>
</svg>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="toast-container position-fixed top-50 start-50 translate-middle p-3">
<div id="liveToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header toast_alert bg-oro ">
<!-- <img src="..." class="rounded me-2" alt="..."> -->
<strong class="me-auto">DATOS</strong>
<small>11 mins ago</small>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
<p>Please contact an administrator to <b>unlock</b> your system or contact the technical department</p>
<p><i class="bi bi-headset"></i> <b>ext 666</b> / <b>terminal number:</b> 00345</p>
<p><i class="bi bi-exclamation-square"></i> <b>alert code: </b> / 07-566</p>
</div>
</div>
</div>
<div class="modal fade" id="modalNivelesAcceso" tabindex="-1" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Ticket</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- table -->
<div class="table-responsive overflow-y-hidden">
<table class="table mb-0 text-nowrap table-hover table-centered">
<thead class="">
<tr>
<th>Tipo</th>
<td class="align-middle">Sugerencia</td>
</tr>
</thead>
<tbody>
<!-- Mail -->
<tr>
<th>Mail de contacto</th>
<td class="align-middle">usuarioEjemplo@gmail.com</td>
</tr>
<!-- Fecha -->
<tr>
<th>Fecha</th>
<td class="align-middle">20 Abril, 2024</td>
</tr>
<!-- Titulo -->
<tr>
<th>Titulo</th>
<td class="align-middle">Cambio de colores</td>
</tr>
</tbody>
</table>
</div>
<section class="modal-container-body rtf">
<h2>Cambio de colores</h2>
<p>Los colores de vuestra pagina son demasiado llamativos, sugiero que los cambieis a tonos mas
suaves o colores pastel y lorem ipsum dolor sit amet, consectetur adipiscing elit. Unum
nescio, quo modo possit, si luxuriosus sit, finitas cupiditates habere. Hoc est non modo cor
non habere, sed ne palatum quidem. Sic, et quidem diligentius saepiusque ista loquemur inter
nos agemusque communiter. Paulum, cum regem Persem captum adduceret, eodem flumine invectio?
Quid igitur dubitamus in tota eius natura quaerere quid sit effectum? Duo Reges: constructio
interrete. </p>
</section>
<footer class="modal-container-footer d-flex justify-content-end">
<button class="btn btn-oro-outline me-2" type="submit">Mandar Respuesta</button>
<button class="btn btn-oro" type="submit">Resolver ticket</button>
</footer>
</div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
var toggleBtn = document.getElementById('toggle-sidebar-btn');
var dbWrapper = document.getElementById('db-wrapper');
toggleBtn.addEventListener('click', function () {
dbWrapper.classList.toggle('toggled');
});
});
</script>
<!-- Scripts -->
<script src="js/toast.js"></script>
<script src="https://kit.fontawesome.com/ca4ee4c5f8.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"></script>
<script src="js/darkMode.js"></script>
</body>
</html>