-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (129 loc) · 6.48 KB
/
index.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
<!DOCTYPE html>
<html lang="es-AR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gestión de Cursos</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<main>
<div class="container">
<h1>Gestión de Cursos</h1>
<h4>*Se recomienda genrear los datos en el Orden en que estan los Formularios</h4>
<hr>
<section class="form-section">
<!-- Formulario para agregar Categoria -->
<form id="categoriaForm">
<h3>Agregar Categoria</h3>
<div class="form-group">
<label for="nombreCategoria">Nombre de la Categoria:</label>
<input type="text" id="nombreCategoria" required>
</div>
<button type="submit">Agregar Categoria</button>
</form>
<!-- Formulario para agregar Profesor -->
<form id="profesorForm">
<h3>Agregar Profesor</h3>
<div class="form-group">
<label for="nombreProfesor">Nombre:</label>
<input type="text" id="nombreProfesor" required>
</div>
<div class="form-group">
<label for="apellidoProfesor">Apellido:</label>
<input type="text" id="apellidoProfesor" required>
</div>
<div class="form-group">
<label for="dniProfesor">DNI:</label>
<input type="number" id="dniProfesor" required min="1000000" max="99999999">
</div>
<div class="form-group">
<label for="emailProfesor">Email:</label>
<input type="email" id="emailProfesor" required>
</div>
<div class="form-group">
<label for="fechaNacProfesor">Fecha de Nacimiento:</label>
<input type="date" id="fechaNacProfesor" required>
</div>
<button type="submit">Agregar Profesor</button>
</form>
<!-- Formulario para agregar Curso -->
<form id="cursoForm">
<h3>Agregar Curso</h3>
<div class="form-group">
<label for="nombreCurso">Nombre del Curso:</label>
<input type="text" id="nombreCurso" required>
</div>
<div class="form-group">
<label for="fechaInicioCurso">Fecha de Inicio:</label>
<input type="date" id="fechaInicioCurso" required>
</div>
<div class="form-group">
<label for="fechaFinCurso">Fecha de Finalización:</label>
<input type="date" id="fechaFinCurso" required>
</div>
<div class="form-group">
<label for="categoriaCurso">Categoría del Curso: (Selecciona una)</label>
<select id="categoriaCurso" required></select>
</div>
<!-- Select opcional para asignar profesor -->
<div class="form-group">
<label for="profesorCurso">Asignar Profesor (opcional):</label>
<select id="profesorCurso"></select>
</div>
<button type="submit">Agregar Curso</button>
</form>
<!-- Formulario para agregar Alumno -->
<form id="alumnoForm">
<h3>Agregar Alumno</h3>
<div class="form-group">
<label for="nombreAlumno">Nombre:</label>
<input type="text" id="nombreAlumno" required>
</div>
<div class="form-group">
<label for="apellidoAlumno">Apellido:</label>
<input type="text" id="apellidoAlumno" required>
</div>
<div class="form-group">
<label for="dniAlumno">DNI:</label>
<input type="number" id="dniAlumno" required min="1000000" max="99999999">
</div>
<div class="form-group">
<label for="emailAlumno">Email:</label>
<input type="email" id="emailAlumno" required>
</div>
<div class="form-group">
<label for="fechaNacAlumno">Fecha de Nacimiento:</label>
<input type="date" id="fechaNacAlumno" required>
</div>
<!-- Select opcional para asignar curso -->
<div class="form-group">
<label for="cursosAlumno">Inscribirse a Cursos (opcional):</label>
<select multiple id="cursosAlumno">
<option value="" disabled>Seleccione 1 o más Cursos</option>
</select>
</div>
<button type="submit">Agregar Alumno</button>
</form>
</section>
<hr>
<h2>Visualización de los Resultados</h2>
<hr>
<section class="data-section">
<article id="data-section__alumnos" class="data-section__alumnos"></article>
<article id="data-section__profes" class="data-section__profes"></article>
<article id="data-section__cursos" class="data-section__cursos"></article>
<article id="data-section__categorias" class="data-section__categorias"></article>
</section>
</div>
</main>
<footer id="footer">
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<script type="module" src="assets/js/index.js"></script>
</body>
</html>