-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
88 lines (87 loc) · 2.99 KB
/
dashboard.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Dashboard</h1>
<nav>
<ul>
<li><a href="#estudiantes" id="linkEstudiantes">Estudiantes</a></li>
<li><a href="#asignaturas" id="linkAsignaturas">Asignaturas</a></li>
</ul>
</nav>
</header>
<main>
<div id="contenedorEstudiantes" class="contenido active">
<h2>Listado de Estudiantes</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Juan Pérez</td>
<td>
<button class="btn-editar">Editar</button>
<button class="btn-eliminar">Eliminar</button>
</td>
</tr>
<tr>
<td>2</td>
<td>María López</td>
<td>
<button class="btn-editar">Editar</button>
<button class="btn-eliminar">Eliminar</button>
</td>
</tr>
<!-- Más estudiantes ficticios -->
</tbody>
</table>
<button id="agregarEstudiante">Agregar Estudiante</button>
</div>
<div id="contenedorAsignaturas" class="contenido">
<h2>Listado de Asignaturas</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Matemáticas</td>
<td>
<button class="btn-editar">Editar</button>
<button class="btn-eliminar">Eliminar</button>
</td>
</tr>
<tr>
<td>2</td>
<td>Historia</td>
<td>
<button class="btn-editar">Editar</button>
<button class="btn-eliminar">Eliminar</button>
</td>
</tr>
<!-- Más asignaturas ficticios -->
</tbody>
</table>
<button id="agregarEstudiante">Agregar Asignatura</button>
</div>
</main>
<script src="scripts.js"></script>
</body>
</html>