-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avances en el diseño web y requerimientos
- Loading branch information
1 parent
da4e7f3
commit 31323d8
Showing
12 changed files
with
179 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="icon" type="image/x-icon" href="imagenes/logoUTN.png"> | ||
<link rel="stylesheet" href="estilosRequerimientos.css"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet"> | ||
<title>Consultar Incidente</title> | ||
</head> | ||
<body> | ||
<a class="botonIrAPagPrincipal" href="pagina-principal.html">Ir a Pagina Principal</a> | ||
<h1 class="titulo">Consultar Incidentes por Estado</h1> | ||
<div class="contenedorColumna"> | ||
<div class="columna1"> | ||
<div class="contenedorColumna1"> | ||
<a class="referencia" href="cargar-datos-entidades.html">Cargar datos Entidades y Organismos</a> | ||
<a class="referencia" href="abrir-incidente.html">Abrir Incidente</a> | ||
<a class="referencia" href="cerrar-incidente.html">Cerrar Incidente</a> | ||
<a class="referenciaElegida" href="consultar-incidente.html">Consultar Incidente</a> | ||
<a class="referencia" href="sugerencia-incidente.html">Sugerencia Incidente</a> | ||
<a class="referencia" href="visualizacion-rankings.html">Rankings</a> | ||
<a class="referencia" href="mi-cuenta.html">Mi cuenta</a> | ||
</div> | ||
</div> | ||
<div class="columna2"> | ||
<div class="opciones"> | ||
<label class="label" for="selectIncidente">Selecciona un Incidente:</label> | ||
<select class="input" id="selectIncidente"> | ||
<!-- Aquí se llenará la lista de incidentes con JavaScript --> | ||
</select> | ||
</div> | ||
<button class="botonCargar" type="submit" class="btn btn-sm btn-outline-primary text-nowrap mt-5">Buscar Incidente</button> | ||
</div> | ||
</div> | ||
<script> | ||
//cargo lista incidentes | ||
const selectIncidente = document.getElementById('selectIncidente'); | ||
const incidentes = ["Incidente 1", "Incidente 2"]; | ||
incidentes.forEach(incidente => { | ||
const option = document.createElement('option'); | ||
option.value = incidente; | ||
option.textContent = incidente; | ||
selectIncidente.appendChild(option); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.