-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (67 loc) · 3.25 KB
/
index.html
File metadata and controls
69 lines (67 loc) · 3.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MDA Titulos</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="shortcut icon" href="https://www.correoargentino.com.ar/sites/default/files/favicon_0.png"
type="image/png" />
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<header>
<div class="hleft">
<img class="logos" src="img/icon/Correo Argentino.svg"/>
<img class="logos" src="img/icon/areait.png"/>
</div>
<div class="hright">
<button type="button" id="loginIndex" class="btn btn-secondary" data-bs-toggle="modal" data-bs-target="#exampleModal">Admin</button>
<!-- <button id="loginIndex" class="btn btn-secondary" onclick="goAdmin()">Admin</button> -->
<button id="sugerencias" class="btn btn-secondary" onclick="goSugerencia()">Sugerencias</button>
</div>
</header>
<section id="contenido" class="contenido">
<div id="contenedor" class="contenedor">
<div class="top">
<h2 class="tituloindex">Titulos para el SM</h1>
</div>
<div id="selecionables" class="bot"></div>
<div id="ser"></div>
<div id="tit"></div>
<div id="btnCopy"></div>
</div>
</section>
<footer>
<p class="footertext">Develop By <a href="https://www.linkedin.com/in/mariodanielledesma" target="_blank">Operador10</a></p>
</footer>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Ingreso</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form id="loginForm">
<div class="mb-3">
<label for="username" class="form-label">Usuario</label>
<input type="text" class="form-control" id="username" required>
<div class="invalid-feedback">Por favor ingrese un usuario.</div>
</div>
<div id="validmsg" class="mb-3">
<label for="password" class="form-label">Contraseña</label>
<input type="password" class="form-control" id="password" minlength="6" required>
<div class="invalid-feedback">La contraseña debe tener al menos 6 caracteres.</div>
</div>
<span id="loginerror">Usuario y/o contraseña incorrectos</span>
<button type="submit" class="btn btn-secondary float-end">Ingresar</button>
</form>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="js/index.js"></script>
</body>
</html>