-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (97 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Taller 1</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<h1 id="stuName"></h1>
<img
class="rounded mx-auto d-block"
src="https://scontent.fbog15-1.fna.fbcdn.net/v/t1.0-1/p320x320/86192446_10213336077514924_6892194149433344_o.jpg?_nc_cat=108&_nc_sid=dbb9e7&_nc_eui2=AeGZBJYNY2uc2Y6bvhWMHvEwMHPUO-xh_NUJt5Ghi88EUXENT7AI77JhG3gMOtqHJmeaF4cN6ugrL7O4O1p3d4zJkxY3gxEirZpcR8hdSv2baA&_nc_ohc=azwx1Mdn660AX-WmqzM&_nc_ht=scontent.fbog15-1.fna&_nc_tp=6&oh=b15ac8c93e02e3dc8849506845f6212d&oe=5EA47F05"
alt="Avatar"
/>
<div class="card" style="width: 100%">
<h2>Datos Personales</h2>
<table class="table table-hover">
<tbody id="student"></tbody>
</table>
</div>
</div>
<div class="col">
<div class="card" style="width: 100%">
<h2>Cursos Actuales</h2>
<form style="margin:1px;">
<div class="form-row">
<div class="col-6">
<input
type="text"
class="form-control"
id="search-box"
placeholder="Filtrar por nombre"
/>
</div>
<div class="col-6">
<button type="button" id="button-filterByName" class="btn btn-success">
Aplicar
</button>
</div>
<div class="col-6">
<input
type="text"
class="form-control"
id="range-box"
placeholder="Filtrar por rango ej: 1,4"
/>
</div>
<div class="col-6">
<button
type="button"
id="button-filterByRange"
class="btn btn-success"
>
Aplicar
</button>
</div>
</div>
</form>
<table class="table table-hover">
<thead class="thead-dark">
<tr>
<th scope="col">Curso</th>
<th scope="col">Profesor</th>
<th scope="col">Creditos</th>
</tr>
</thead>
<tbody id="courses"></tbody>
</table>
<div class="row" style="text-align:center">
<div class="col-md-8" style="text-align:right">
<h3>Total creditos:</h3>
</div>
<div class="col-6 col-md-4" style="text-align:left">
<h3 id="total-credits"></h3>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="./scripts/course.js"></script>
<script type="module" src="./scripts/dataCourses.js"></script>
<script type="module" src="./scripts/main.js"></script>
<script type="module" src="./scripts/dataStudent.js"></script>
<script type="module" src="./scripts/student.js"></script>
</body>
</html>