Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
ProyectoFinal-Bootcamp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jose Baez
ProyectoFinal-Bootcamp
Commits
27a9d53c
Commit
27a9d53c
authored
May 17, 2022
by
Angel Zarate
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Filtros y diseño de postulante
parent
9f750c7a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
76 additions
and
11 deletions
+76
-11
src/main/java/com/roshka/proyectofinal/Postulante/SaveServlet.java
+1
-1
src/main/webapp/form.css
+3
-2
src/main/webapp/formulario.jsp
+1
-2
src/main/webapp/postulante-consulta.jsp
+7
-3
src/main/webapp/postulante.css
+64
-3
No files found.
src/main/java/com/roshka/proyectofinal/Postulante/SaveServlet.java
View file @
27a9d53c
...
...
@@ -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';\">×</span> \n"
+
" <strong>Formulario ya Cargado!</strong> YA EXISTE EL FORMULARIO\n"
+
...
...
src/main/webapp/form.css
View file @
27a9d53c
...
...
@@ -12,9 +12,10 @@ body{
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
height
:
160%
;}
height
:
160%
;
}
/* para el logo */
img
{
width
:
165px
;
...
...
src/main/webapp/formulario.jsp
View file @
27a9d53c
...
...
@@ -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>
...
...
src/main/webapp/postulante-consulta.jsp
View file @
27a9d53c
...
...
@@ -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>
...
...
src/main/webapp/postulante.css
View file @
27a9d53c
body
{
background-image
:
url(imagenes/descarga.svg)
;
}
\ No newline at end of file
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment