-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserList.html
58 lines (48 loc) · 2.99 KB
/
userList.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>ULPGC EVENTS</title>
<link rel="icon" href="../images/logoUlpgc.png">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/footer.css">
<link rel="stylesheet" href="../../css/eventList.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-zYPOMqeu1DAVkHiLqWBUTcbYfZ8osu1Nd6Z89ify25QV9guujx43ITvfi12/QExE" crossorigin="anonymous"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="//cdn.rawgit.com/rainabba/jquery-table2excel/1.1.0/dist/jquery.table2excel.min.js"></script>
<script src = "../js/header.js" type="module"></script>
<script src = "../js/userList.js" type="module"></script>
<script src = "../js/exportXls.js"></script>
</head>
<body id="cuerpo-pagina">
<header id="header"></header>
<header id="header"></header>
<h1 id="header-lista-usuarios-del-evento">Lista de usuarios</h1>
<button class="btn btn-success" id="excel-button" onclick="exportCSVExcel()">
Descargar Lista de Usuarios Excel
</button>
<div id="page_element">
<table class="table table-striped table-hover table-responsive" id="table-event-list">
<thead class="bg-primary text-white">
<tr>
<th scope="col" class="hidden">id</th>
<th scope="col">Nombre</th>
<th scope="col">Correo</th>
<th scope="col">Telefono</th>
<th scope="col" class="no-export"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<footer><div id="footer"></div></footer>
</body>
</html>