-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
50 lines (48 loc) · 2.57 KB
/
popup.html
File metadata and controls
50 lines (48 loc) · 2.57 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<main class="container bg-warning-subtle p-3" style="width: 350px; ">
<header>
<h1 class="text-primary-emphasis text-center">Autoticket</h1>
</header>
<section>
<form class="d-flex flex-column justify-content-center align-items-center gap-3">
<label for="text">Ingrese el texto a actualizar:</label>
<textarea id="text" class="form-control" rows="5"></textarea>
<button type="submit" class="btn btn-outline-secondary">Actualizar Tickets</button>
</form>
<span class="float-end" style="margin-top: -39px;">
<button type="button" class="btn" data-bs-toggle="modal" data-bs-target="#exampleModal">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-info-circle" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/>
<path d="m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/>
</svg>
</button>
</span>
<span id="alerts" class="mt-3 d-block">
<p id="msj-alert" class="alert alert-success m-0 text-center">Mensaje de error o de alerta dinamico</p>
</span>
</section>
</main>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" style="width: max-content !important;">
<div class="modal-content">
<div class="modal-body text-center text-primary-emphasis fs-2">
Develop by <br> Operador10
</div>
<div class="modal-footer justify-content-center">
<button type="button" class="btn btn-outline-success" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- End Modal -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>