prueba.html 3.19 KB
Newer Older
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
<!DOCTYPE html<html>
	<head>
		<title>Prueba</title>
		<meta charset="utf-8">

		 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

		 <link rel="shortcut icon" href="https://i.pinimg.com/originals/90/2e/b1/902eb16546985bbc3b42628ee6bffdfe.png">


		<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
		<!-- <link rel="stylesheet" href="/resources/demos/style.css"> -->
		<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"></script>
		<script type="text/javascript" src="script.js"></script>


		<style type="text/css">
			.form{
				padding: 0px;
				border: dotted;
			}

			tr:hover{
				background-color: gray;
			}

			label{
				margin-right: 10px;
			}

			.fixed-dialog{
				  position: fixed;
				  /*top: 10px;*/
				  left: 50px;
				  bottom: 50px;
			}

			body{
				background-color: blue; /*#4286f4;*/
			}

			table{
				border:dotted;
			}

		</style>

	</head>
	<body>
		<button id="papa" width="500px">prueba</button>
		<div class="container">

      	<div class="row">

        <div class="col-lg-4">
        	<table id="listaTareas" class="table">
        		<tr>
        			<th>Id</th>
        			<th>Fecha</th>
			        <th>Descripcion</th>
			        <th>Prioridad</th>
			        <th>Estado</th>
			        <th></th>
        		</tr>

              </table>
          </div>

      </div>
      <!-- /.row -->

    </div>

    <br><br>


	<!-- formulario agregar -->
    <div class="form" style="background-color:#f47741;">
		<h3>Form Agregar</h3>
		<div class="form-group">
    		<label>Proyecto</label>
    		<input type="text" name="" id="proyecto">
    	</div>
		<div class="form-group">
    		<label>Descripción</label>
    		<input type="text" name="" id="descripcion">
    	</div>
    	<button id="botonAgregar">Agregar!</button>
    </div>



	<div id="dialogDetail"></div>

	<div id="formularioEditar">


		<div class="form-group">
			<label for="idEditar">ID</label>
			<input type="text" name="idEditar" id="idEditar" placeholder="id tarea" disabled>
		</div>

		<div class="form-group">
			<label for="fechaEditar">Fecha</label>
			<input type="text" name="fechaEditar" placeholder="Fecha" id="fechaEditar">
		</div>

		<div class="form-group">
			<label for="descripcionEditar">Descripción</label>
			<input type="text" name="descripcionEditar" placeholder="Descripción" id="descripcionEditar">
		</div>

		<div class="form-group">
			<label for="prioridadEditar">Prioridad</label>
			<input type="text" name="prioridadEditar" placeholder="Prioridad" id="prioridadEditar">
		</div>

		<div class="form-group">
			<label for="estadoEditar">Estado</label>
			<input type="text" name="estadoEditar" placeholder="Estado" id="estadoEditar">
		</div>

		<div class="form-group">
			<label for="">Proyecto</label>
			<input type="text" name="proyectoEditar" placeholder="Proyecto" id="proyectoEditar">
		</div>


		<button id="botonGuardarCambios" style="margin-top:5px; padding: 10px;">Guardar Cambios</button>

	</div>

	<div></div>


	</body>
</html>