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
e5804c67
Commit
e5804c67
authored
May 18, 2022
by
Jose Baez
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ramaAux' into 'develop'
Rama aux See merge request
!42
parents
10379695
274c63cc
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
8 deletions
+44
-8
src/main/webapp/formulario_bootcamp.jsp
+4
-0
src/main/webapp/formulario_lenguaje.jsp
+8
-0
src/main/webapp/formulario_profesor.jsp
+5
-1
src/main/webapp/menu.css
+6
-2
src/main/webapp/menu.jsp
+11
-5
src/main/webapp/postulante-consulta.jsp
+10
-0
No files found.
src/main/webapp/formulario_bootcamp.jsp
View file @
e5804c67
...
...
@@ -23,6 +23,10 @@
</head>
<body>
<div
class=
"botones"
><a
href=
"logout"
>
LOGOUT
</a><br>
<a
href=
"index.html"
>
INICIO
</a><br>
<a
href=
"menu.jsp"
>
MENU
</a><br>
</div>
<div
class=
"container"
>
<h1>
CREAR BOOTCAMP
</h1>
...
...
src/main/webapp/formulario_lenguaje.jsp
View file @
e5804c67
...
...
@@ -25,7 +25,15 @@
</head>
<body>
<div
class=
"botones"
><a
href=
"logout"
>
LOGOUT
</a><br>
<a
href=
"index.html"
>
INICIO
</a><br>
<a
href=
"menu.jsp"
>
MENU
</a><br>
</div>
<div>
<h1>
CREAR LENGUAJE
</h1>
<
%@
page
import=
"com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.lenguaje.LenguajeDao, java.util.List,java.util.Iterator"
%
>
...
...
src/main/webapp/formulario_profesor.jsp
View file @
e5804c67
...
...
@@ -25,8 +25,12 @@
</head>
<body>
<div
class=
"botones"
><a
href=
"logout"
>
LOGOUT
</a><br>
<a
href=
"index.html"
>
INICIO
</a><br>
<a
href=
"menu.jsp"
>
MENU
</a><br>
</div>
<div>
<h1>
CREAR PROFESOR Y FILTRAR
</h1>
<
%@
page
import=
"com.roshka.proyectofinal.entity.Profesor, com.roshka.proyectofinal.profesor.ProfesorDao, java.util.List,java.util.Iterator"
%
>
...
...
src/main/webapp/menu.css
View file @
e5804c67
...
...
@@ -51,4 +51,8 @@
.menu
li
:hover
{
background-color
:
rgb
(
18
,
18
,
98
);
}
\ No newline at end of file
}
.botones
a
{
color
:
black
;
}
\ No newline at end of file
src/main/webapp/menu.jsp
View file @
e5804c67
...
...
@@ -8,10 +8,6 @@
}%
>
<!DOCTYPE html>
<html>
...
...
@@ -48,10 +44,14 @@
clear
:
both
;
display
:
table
;
}
a
{
color
:
white
;
}
.botones
a
{
color
:
black
;
}
.menu
{
width
:
50%
;
...
...
@@ -81,6 +81,12 @@
</head>
<body>
<div
class=
"botones"
>
<a
href=
"logout"
>
LOGOUT
</a><br>
<a
href=
"index.html"
>
INICIO
</a><br>
</div>
<div
class=
"header"
>
<h1>
MENU TH
</h1>
...
...
src/main/webapp/postulante-consulta.jsp
View file @
e5804c67
<
%@
page
import=
"jakarta.servlet.http.* , java.lang.Object"
%
>
<
%
HttpSession
session1 =
request.getSession(true);
Object
done =
session1.getAttribute("logon.isDone");
if
(
done =
=
null
)
{
session1
.
setAttribute
("
login
.
target
",
HttpUtils
.
getRequestURL
(
request
).
toString
());
response
.
sendRedirect
(
request
.
getScheme
()
+
"
:
//"
+
request
.
getServerName
()
+
"
:
"
+
request
.
getServerPort
()
+
request
.
getContextPath
()
+"/
login
.
jsp
");
return
;
}%
>
<
%@
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>
...
...
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