-.html 4.63 KB
Newer Older
Hugo Villagra committed
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
<!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>