Commit 699d85b2 by Angel Zarate

Mejorando el css de postulantes

parent 7f75482d
......@@ -11,7 +11,7 @@ public class DataBase {
Class.forName("org.postgresql.Driver");
con= DriverManager
.getConnection("jdbc:postgresql://localhost:5432/bootcamp_th",
"postgres", "postgres");
"postgres", "2022roshka");
if(con != null){
System.out.println("---> CONNECTED TO SERVER");
......
......@@ -6,6 +6,8 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- el icono para la pagina -->
<link rel="shortcut icon" href="imagenes/roshkaicon.ico" sizes="any" />
<!-- coneccion con el de css -->
......@@ -15,22 +17,25 @@
<body>
<div class="logo">
<a href="./index.html"> <img class="logoi" src="imagenes/logo-roshka.svg" alt="" /> </a>
<a href="./login.jsp"> <img class="logoi" src="imagenes/logo-roshka.svg" alt="" /> </a>
<!-- logo con link -->
</div>
<div class="container">
<h1>Lista Postulantes</h1>
<div class="filtros">
<form action="filtros-postulante" >
<input type="search" name="nombreBuscar"
placeholder="Buscar por nombre">
<button type="submit">Buscar</button>
</form>
<div class="input-group">
<form action="filtros-postulante" >
<input type="search" name="nombreBuscar"
placeholder="Buscar por nombre">
<button type="submit">Buscar</button>
</form>
<form action="filtros-postulante" method="post" style="display:inline">
<input type="search" name="nombre" placeholder="Buscar por Bootcamp" required>
<button type="submit">Bootcamp</button>
</form>
<form action="filtros-postulante" method="post">
<input type="search" name="nombre" placeholder="Buscar por Bootcamp" required>
<button type="submit">Bootcamp</button>
</form>
</div>
<form action="filtros-postulante" method="post">
<input type="hidden" name="nombre" value="notebook">
......
......@@ -11,7 +11,7 @@ img{
padding: 5px;
}
.container{
width: 300%;
width: 100%;
max-width: 785px;
min-width: 320px;
border-radius: 15px;
......@@ -22,7 +22,7 @@ table{
/* background-color: wheat; */
text-align: left;
border-collapse: collapse;
width: 150%;
width: 100%;
/* border: solid 3px black; */
}
a{
......@@ -80,3 +80,7 @@ th { border: 1px solid black; height: 30px;
}
button:hover{
color: yellow;}
div.boot{
width: 100%;
text-align: center;
}
\ 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