Commit 27a9d53c by Angel Zarate

Filtros y diseño de postulante

parent 9f750c7a
......@@ -88,7 +88,7 @@ public class SaveServlet extends HttpServlet {
request.getRequestDispatcher("formulario.jsp").include(request, response);
}else{
if (rechazarDatos){
//out.println("El correo ingresado ya esta registrado para el bootcamp actual");
out.print(" <div class=\"alert info\">\n" +
" <span class=\"closebtn\" onclick=\"this.parentElement.style.display='none';\">&times;</span> \n" +
" <strong>Formulario ya Cargado!</strong> YA EXISTE EL FORMULARIO\n" +
......
......@@ -12,9 +12,10 @@ body{
display: flex;
justify-content: center;
align-items: center;
height: 160%;}
height: 160%;
}
/* para el logo */
img{
width: 165px;
......
......@@ -86,8 +86,7 @@ pageEncoding="UTF-8"%>
<input class="enviar info error" type="submit">
<input class="borrar" type="reset" value="Borrar"><br>
<label for="otro">otro</label>
<input id="otro" name="otro" type="checkbox"><br>
<a href="index.html">volver</a>
</form>
......
......@@ -14,7 +14,11 @@
</head>
<body>
<div>
<div class="logo">
<a href="./index.html"> <img class="logoi" src="imagenes/logo-roshka.svg" alt="" /> </a>
<!-- logo con link -->
</div>
<div class="container">
<h1>Lista Postulantes</h1>
<form action="filtros-postulante" >
<input type="search" name="nombreBuscar"
......@@ -47,12 +51,12 @@
<th>
<form action="filtros-postulante" method="post">
<input type="hidden" name="nombre" value="aceptado">
<button type="submit">Aceptado</button>
<button class="aceptado" type="submit">Aceptado</button>
</form>
</th>
<th></th>
</tr>
<tbody>
<tbody class="tcuerpo">
<c:forEach var="postulante" items="${postulantes}" varStatus="myIndex">
<tr>
<td> ${myIndex.index + 1}-</td>
......
body{
background-image: url(imagenes/descarga.svg);
background-image: url(imagenes/descarga.svg);
font-family:Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
font-weight: bold;
}
img{
width: 165px;
padding: 5px;
}
.container{
width: 300%;
max-width: 785px;
min-width: 320px;
border-radius: 15px;
padding: 1rem;
}
table{
background-color: wheat;
text-align: left;
border-collapse: collapse;
width: 100%;
border-collapse: collapse;
}
a{
text-decoration: none;
color: antiquewhite;
}
h1{
font-family:Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
text-align: right;
color:wheat;
font-weight:bold;
}
button{
margin:5px;
background-image: url(imagenes/descarga.svg);
color: aliceblue;
}
th,td{
margin: 2px;
}
table tr:nth-child(odd) { background-color: rgba(11, 49, 110, 0.75);
}
table tr:nth-child(even) { background-image: url(imagenes/descarga.svg);
}
td{
margin: 20px;
}
th{
padding: 3px;
}
tbody .tcuerpo{
border: 1px solid transparent; height: 30px;
}
tr:hover td { background: #071750; color: rgb(121, 153, 51); }
td, th { border: 1px solid transparent; height: 30px; }
button:hover{
color: yellow;}
\ No newline at end of file
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