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
5c94329c
Commit
5c94329c
authored
May 17, 2022
by
Jose Baez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Arreglos generales en la vista
parent
81ddc74b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
34 deletions
+21
-34
src/main/webapp/form.css
+15
-21
src/main/webapp/formulario.jsp
+1
-1
src/main/webapp/formulario_bootcamp.jsp
+4
-0
src/main/webapp/index.html
+1
-12
No files found.
src/main/webapp/form.css
View file @
5c94329c
...
@@ -5,19 +5,15 @@ html,body{
...
@@ -5,19 +5,15 @@ html,body{
}
}
/* damos los estilos a todo lo que contiene el body */
/* damos los estilos a todo lo que contiene el body */
body
{
body
{
font-family
:
'Quicksand'
,
sans-serif
;
background-color
:
rgba
(
11
,
49
,
110
,
0.75
);
color
:
white
;
font-family
:
Calibri
,
Candara
,
Segoe
,
Segoe
UI
,
Optima
,
Arial
,
sans-serif
;
webkit-font-smoothing
:
antialiased
;
color
:
wheat
;
-moz-osx-font-smoothing
:
grayscale
;
font-weight
:
bold
;
align-items
:
center
;
display
:
flex
;
height
:
150%
;}
justify-content
:
center
;
p
{
font-family
:
'Quicksand'
,
sans-serif
;
color
:
white
;
webkit-font-smoothing
:
antialiased
;
-moz-osx-font-smoothing
:
grayscale
;
align-items
:
center
;
align-items
:
center
;
height
:
150%
;}
height
:
160%
;
}
/* para el logo */
/* para el logo */
...
@@ -32,7 +28,7 @@ p.enter{
...
@@ -32,7 +28,7 @@ p.enter{
}
}
/* para el parrafo */
/* para el parrafo */
p
:hover
{
p
:hover
{
color
:
white
;
color
:
yellow
;
}
}
/* para el create o sea para el main */
/* para el create o sea para el main */
...
@@ -51,7 +47,7 @@ p:hover{
...
@@ -51,7 +47,7 @@ p:hover{
display
:
block
;
display
:
block
;
border
:
none
;
border
:
none
;
align-items
:
center
;
align-items
:
center
;
color
:
white
}
}
...
@@ -62,12 +58,10 @@ p:hover{
...
@@ -62,12 +58,10 @@ p:hover{
align-items
:
center
;
align-items
:
center
;
}
}
.form
input
[
type
=
"email"
],
.form
input
[
type
=
"text"
],
.form
input
[
type
=
"number"
]
{
.form
input
[
type
=
"email"
],
.form
input
[
type
=
"text"
],
.form
input
[
type
=
"number"
]
{
background-color
:
transparent
e
;
background-color
:
transparent
;
border-radius
:
10px
;
border-radius
:
10px
;
border
:
1px
solid
#000
;
border
:
1px
solid
#000
;
}
}
.form
input
:hover
{
.form
input
:hover
{
background-color
:
wheat
;
background-color
:
wheat
;
...
@@ -77,12 +71,10 @@ p:hover{
...
@@ -77,12 +71,10 @@ p:hover{
a
{
a
{
text-decoration
:
none
;
text-decoration
:
none
;
}
}
ul
{
ul
{
list-style
:
none
;
list-style
:
none
;
font-size
:
15px
;
font-size
:
15px
;
}
}
a
{
a
{
...
@@ -122,12 +114,14 @@ input#experiencia_laboral,input#notebook,input#universidad{
...
@@ -122,12 +114,14 @@ input#experiencia_laboral,input#notebook,input#universidad{
width
:
500px
;
width
:
500px
;
}
}
/* para el alert */
/* para el alert */
.alert
{
.alert
{
padding
:
10px
;
padding
:
10px
;
background-color
:
background-color
:
#2196F3
;
background-color
:
background-color
:
#2196F3
;
color
:
white
;
color
:
white
;
}
}
.alert.info
{
background-color
:
#2196F3
;}
.alert.info
{
background-color
:
#2196F3
;}
.alert.error
{
background-color
:
#ff0000
;}
.alert.error
{
background-color
:
#ff0000
;}
.closebtn
{
.closebtn
{
...
@@ -140,7 +134,7 @@ width:500px;
...
@@ -140,7 +134,7 @@ width:500px;
cursor
:
pointer
;
cursor
:
pointer
;
transition
:
0.3s
;
transition
:
0.3s
;
}
}
.closebtn
:hover
{
.closebtn
:hover
{
color
:
black
;
color
:
black
;
}
}
\ No newline at end of file
Contraer
\ No newline at end of file
src/main/webapp/formulario.jsp
View file @
5c94329c
...
@@ -41,7 +41,6 @@ pageEncoding="UTF-8"%>
...
@@ -41,7 +41,6 @@ pageEncoding="UTF-8"%>
<form method="post" action="SaveServlet" class="form">
<form method="post" action="SaveServlet" class="form">
<input type="hidden" name="bootcamp_id" value="<%= request.getParameter("bootcamp") %>">
<input type="hidden" name="bootcamp_id" value="<%= request.getParameter("bootcamp") %>">
<label for="nombre">Ingrese su Nombre:</label>
<label for="nombre">Ingrese su Nombre:</label>
...
@@ -98,6 +97,7 @@ pageEncoding="UTF-8"%>
...
@@ -98,6 +97,7 @@ pageEncoding="UTF-8"%>
<input class="borrar" type="reset" value="Borrar"><br>
<input class="borrar" type="reset" value="Borrar"><br>
<a href="index.html">volver</a>
<a href="index.html">volver</a>
</form>
</form>
</div>
</article>
</article>
</main>
</main>
</body>
</body>
...
...
src/main/webapp/formulario_bootcamp.jsp
View file @
5c94329c
...
@@ -18,6 +18,10 @@
...
@@ -18,6 +18,10 @@
<
%@
page
import=
"com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.entity.Bootcamp, com.roshka.proyectofinal.lenguaje.LenguajeDao, com.roshka.proyectofinal.bootcamp.BootcampDao, com.roshka.proyectofinal.entity.Profesor, com.roshka.proyectofinal.profesor.ProfesorDao, java.util.List,java.util.Iterator"
%
>
<
%@
page
import=
"com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.entity.Bootcamp, com.roshka.proyectofinal.lenguaje.LenguajeDao, com.roshka.proyectofinal.bootcamp.BootcampDao, com.roshka.proyectofinal.entity.Profesor, com.roshka.proyectofinal.profesor.ProfesorDao, java.util.List,java.util.Iterator"
%
>
<
%
<
%
LenguajeDao
lenDao =
new
LenguajeDao
();
List
<
Lenguaje
>
listLen = lenDao.listar();
Iterator
<Lenguaje>
iter = listLen.iterator();
Lenguaje len = null;
ProfesorDao profeDao = new ProfesorDao();
ProfesorDao profeDao = new ProfesorDao();
List
<Profesor>
listProfesor = profeDao.listar();
List
<Profesor>
listProfesor = profeDao.listar();
...
...
src/main/webapp/index.html
View file @
5c94329c
...
@@ -26,18 +26,7 @@
...
@@ -26,18 +26,7 @@
<ul>
<ul>
<li
class=
"link-menu"
><a
href=
""
>
Home
</a></li>
<li
class=
"link-menu"
><a
href=
""
>
Home
</a></li>
<li
class=
"link-menu"
><a
href=
"bootcamp.jsp"
>
Postulate
</a></li>
<li
class=
"link-menu"
><a
href=
"bootcamp.jsp"
>
Postulate
</a></li>
<li
class=
"link-menu"
><a
href=
"formulario_bootcamp.jsp"
>
Crear bootcamp
</a></li>
<li
class=
"link-menu"
><a
href=
"manage_postulantes.jsp"
>
Manage Postulantes(perdon angel)
</a></li>
<li
class=
"link-menu"
><a
href=
"formulario.jsp"
>
Postulate
</a></li>
<li
class=
"link-menu"
><a
href=
"formulario_bootcamp.jsp"
>
Crear bootcamp
</a>
<li
class=
"link-menu"
><a
href=
"login.jsp"
>
Login
</a>
<li
class=
"link-menu"
><a
href=
"protected"
>
Recurso Protegido
</a></li>
</li>
<li
class=
"link-menu"
><a
href=
"formulario_lenguaje.jsp"
>
Crear lenguaje
</a>
</li>
<li
class=
"link-menu"
><a
href=
"formulario_profesor.jsp"
>
Crear profesor
</a>
</li>
</li>
</ul>
</ul>
...
@@ -68,7 +57,7 @@
...
@@ -68,7 +57,7 @@
<p
data-block-key=
"cwggy"
>
Es un campo de entrenamiento intensivo y gratuito para principiantes que ya programan y quieren ser parte de la empresa
</p>
<p
data-block-key=
"cwggy"
>
Es un campo de entrenamiento intensivo y gratuito para principiantes que ya programan y quieren ser parte de la empresa
</p>
</div>
</div>
<div
class=
"postulacion"
>
<div
class=
"postulacion"
>
<a
href=
"
formulario
.jsp"
><button
type=
"submit"
class=
"cta-main"
>
POSTULACION
</button></a>
<a
href=
"
bootcamp
.jsp"
><button
type=
"submit"
class=
"cta-main"
>
POSTULACION
</button></a>
<!-- <a href="/postulacion" class="cta-main">POSTULACION</a> -->
<!-- <a href="/postulacion" class="cta-main">POSTULACION</a> -->
</div>
</div>
</div>
</div>
...
...
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