-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
114 lines (109 loc) · 4.9 KB
/
Copy pathpopup.html
File metadata and controls
114 lines (109 loc) · 4.9 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>presente profe extension</title>
<link rel="shortcut icon" href="img/icono.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css">
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.min.js"></script> -->
<style>
.cursor {
cursor: pointer;
}
</style>
</head>
<body>
<main>
<div class="container">
<div class="row p-4 pb-0 pe-lg-0 pt-lg-5 align-items-center rounded-3 border shadow-lg">
<div class="px-4 pt-2 my-2 text-center border rounded-3" id="panel1">
<img src="img/logotext.png" width="300" loading="lazy">
<div class="mx-auto">
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center mb-5">
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center">
Dejar a todos presentes
<button id="btn-inasistencia-presente" class="btn btn-primary btn-sm">OK</button>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Dejar a todos ausentes
<button id="btn-inasistencia" class="btn btn-danger btn-sm">OK</button>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Pasar lista entretenida
<button id="btn-cambiar-panel2" class="btn btn-secondary btn-sm">VER</button>
</li>
</ul>
</div>
</div>
</div>
<div class="px-4 pt-2 my-2 text-center border rounded-3" hidden id="panel2">
<img src="img/logotext.png" width="300" loading="lazy">
<div class="mx-auto">
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center mb-5">
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center">
Cargar alumnos
<button id="btn-buscar" class="btn btn-primary btn-sm">CLICK!</button>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Pasar la lista
<button id="btn-cambiar-panel3" class="btn btn-success btn-sm" disabled>
OK <span id="text-btn-pasar-lista" class="badge badge-pill badge-primary"></span>
</button>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<!-- Pasar lista entretenida -->
</li>
<button id="btn-cambiar-panel1" class="btn btn-dark btn-sm">VOLVER</button>
</ul>
</div>
</div>
</div>
<div class="px-4 pt-2 my-2 text-center" hidden id="panel3">
<div style="width:320px;" class="text-center">
<div class="mx-auto">
<div class="card">
<span class="badge bg-primary" hidden id="alumno-presente">PRESENTE</span>
<span class="badge bg-danger" hidden id="alumno-ausente">AUSENTE</span>
<img class="card-img-top mt-1" width="400px" src="" alt="" id="alumno-img">
<div class="card-body">
<small id="alumno-id"></small>
<strong id="alumno-nombre"></strong>
<p class="card-text" id="alumno-rut"></p>
<button id="btn-presente" class="btn btn-success">PRESENTE</button>
<button id="btn-ausente" class="btn btn-danger">AUSENTE</button>
<!-- TRUCO TRUCO -->
<div id="alumno-items-oculto" hidden></div>
</div>
<small>
<div class="btn-group mb-2" role="group">
<button type="button" id="btn-preview-alumno" class="btn btn-outline-dark btn-sm"><</button>
<button type="button" id="btn-next-alumno" class="btn btn-outline-dark btn-sm">></button>
</div>
</small>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<div class="text-center my-2 row">
<div class="col">
<small id="showme"><strong>@bemtorres</strong></small>
</div>
<div class="col">
<span class="badge bg-dark cursor" id="btn-voice">ON 🔈</span>
</div>
<div class="col">
<small>
<select class="form-select form-select-sm" name="select-voices" id="select-voices">
</select>
</small>
</div>
</small>
</div>
<script src="popup.js"></script>
</body>
</html>