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
cdb28958
Commit
cdb28958
authored
2 years ago
by
Josebaezx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se agrega clase para filtrar postulantes
parent
26266afa
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
1 deletions
+35
-1
src/main/java/com/roshka/proyectofinal/Postulante/Filtros.java
+20
-0
src/main/webapp/menu.html
+1
-1
src/main/webapp/postulante-consulta.jsp
+14
-0
No files found.
src/main/java/com/roshka/proyectofinal/Postulante/Filtros.java
0 → 100644
View file @
cdb28958
package
com
.
roshka
.
proyectofinal
.
Postulante
;
import
jakarta.servlet.RequestDispatcher
;
import
jakarta.servlet.ServletException
;
import
jakarta.servlet.annotation.WebServlet
;
import
jakarta.servlet.http.HttpServlet
;
import
jakarta.servlet.http.HttpServletRequest
;
import
jakarta.servlet.http.HttpServletResponse
;
import
java.io.IOException
;
@WebServlet
(
"/filtros-postulante"
)
public
class
Filtros
extends
HttpServlet
{
@Override
protected
void
doGet
(
HttpServletRequest
req
,
HttpServletResponse
resp
)
throws
ServletException
,
IOException
{
RequestDispatcher
reqDisp
=
req
.
getRequestDispatcher
(
"postulante-consulta.jsp"
);
reqDisp
.
forward
(
req
,
resp
);
}
}
This diff is collapsed.
Click to expand it.
src/main/webapp/menu.html
View file @
cdb28958
...
...
@@ -81,7 +81,7 @@ a{
<div
class=
"column menu"
>
<ul>
<li><a
href=
"#"
>
MANAGE BOOTCAMP
</a></li>
<li><a
href=
"
#
"
>
MANAGE POSTULANTE
</a></li>
<li><a
href=
"
filtros-postulante
"
>
MANAGE POSTULANTE
</a></li>
<li><a
href=
"#"
>
MANAGE LENGUAJES
</a></li>
<li><a
href=
"#"
>
MANAGE PROFESORES
</a></li>
<li><a
href=
"#"
>
USUARIO NUEVO (ADMINISTRADOR)
</a></li>
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/postulante-consulta.jsp
0 → 100644
View file @
cdb28958
<
%@
page
language=
"java"
contentType=
"text/html; charset=ISO-8859-1"
pageEncoding=
"ISO-8859-1"
%
>
<
%@
taglib
uri =
"http://java.sun.com/jsp/jstl/core"
prefix =
"c"
%
>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=ISO-8859-1"
>
<title>
Postulantes Manage
</title>
</head>
<body>
<div>
<h1>
${"HOLA JSTL"}
</h1>
</div>
</body>
</html>
This diff is collapsed.
Click to expand it.
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