-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.89 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
<!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 justify-content-around align-items-center">
<div class="col col-md-6">
<h1>Ana María Suarez</h1>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSchbuU2O-3ZUoz2enL2OM_t_0EKQveMa_vlUlyFFFmwxgIBQN6" height="300px" width="300px" alt="Avatar" class="img-fluid">
<div class="card">
<h5 class="card-title">Datos Personales</h5>
<table class="table">
<thead>
<tr>
<th></th>
</tr>
</thead>
<table class="table">
<tbody id="infoStudent">
</tbody>
</table>
</div>
</div>
<div class="col col-md-6">
<div class="card">
<h2>Cursos Actuales</h2>
<div class="form-row">
<div class="col">
<input type="text" class="form-control" id="search-box" placeholder="Filtrar por nombre">
</div>
<div class="col">
<button type="button" id="button-filterByName" class="btn btn-success">Aplicar</button>
</div>
<div class="col">
<input type="text" class="form-control" id="search-box2" placeholder="Créditos mínimos">
</div>
<div class="col">
<input type="text" class="form-control" id="search-box3" placeholder="Créditos máximos">
</div>
<div class="col">
<button type="button" id="button-filterByCreditos" class="btn btn-success">Aplicar</button>
</div>
<table class="table">
<thead class="thead thead-dark">
<tr>
<th>Curso</th>
<th>Profesor</th>
<th>Créditos</th>
</tr>
</thead>
<tbody>
<tbody id="courses">
</tbody>
</table>
</div>
<div class="row justify-content-end">
<h5 class="col-4"><strong>Total Créditos:</strong></h5>
<h5 class="col-4" id="total-credits"><strong></strong></h5>
</div>
</div>
</div>
</div>
</body>
</html>