Commit e6f22297 by Hugo Villagra

1.0

parents
<!DOCTYPE html>
<html lang="es">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"></script>
<link rel="stylesheet" type="" href="https://code.jquery.com/ui/1.12.1/themes/black-tie/jquery-ui.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-4">
<table class="table table-hover">
<thead>
<th>Id</th>
<th>Fecha</th>
<th>Descripcion</th>
<th>Prioridad</th>
<th>Estado</th>
<th></th>
</thead>
<tbody id="listaTareas">
</tbody>
</table>
</div>
</div>
<div id="formularioEntrada">
<h2>Ingresar proyecto</h2>
<label for="entradaProyecto">Ingrese el nombre del proyecto</label>
<input type="text" id="entradaProyecto" name="entradaProyecto" value="">
<br>
<label for="entradaDescripcion">Ingrese la descripcion del proyecto</label>
<input type="text" id="entradaDescripcion" name="entradaDescripcion" value="">
<br>
<input type="button" id="btnIngresar" name="btnIngresar" value="Guardar" class="btn btn-dark">
</div>
<br>
<br>
<div id="formularioModificar">
<h2>Modificar formulario</h2>
<label for="entradaIDModificar">Ingrese la id del proyecto</label>
<input type="text" name="entradaIDModificar" id="entradaIDModificar" value="">
<br>
<label for="entradaNuevoNombre">Ingrese el nuevo nombre del proyecto</label>
<input type="text" name="entradaNuevoNombre" id="entradaNuevoNombre" value="">
<br>
<label for="entradaNuevaDescripcion">Ingrese la nueva descripcion del proyecto</label>
<input type="text" name="entradaNuevaDescripcion" id="entradaNuevaDescripcion" value="">
<br>
<input type="button" name="btnModificar" id="btnModificar" value="Modificar proyecto" class="btn btn-dark">
</div>
<br>
<br>
<div id="filtrarDescripcion">
<h2>Filtrar resultados</h2>
<label for="entradaFiltro">Ingrese la descripcion a filtrar</label>
<input type="text" id="entradaFiltro" name="entradaFiltro" value="">
<br>
<input type="button" id="btnFiltrar" name="btnFiltrar" value="Aplicar filtro" class="btn btn-dark">
<input type="button" id="btnRestaurar" value="Quitar filtro" class="btn btn-dark">
</div>
<br>
<br>
<div id="filtrarProyecto" class="col-lg-4">
<h2>Lista de proyectos</h2>
<select class="custom-select" id="selectorProyecto">
</select>
<br>
<br>
<input type="button" name="" id="btnFiltrarProyecto" value="Filtrar proyecto" class="btn btn-dark">
<input type="button" id="btnTodoProyecto" value="Quitar filtro proyecto" class="btn btn-dark">
</div>
</div>
<div id="resultado" title="Mas detalle">
</div>
</body>
<script src="-.js"></script>
</html>
\ No newline at end of file
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment