Commit 699d85b2 by Angel Zarate

Mejorando el css de postulantes

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