Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Álvaro Domingo Fuentes
/
Civibankas
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fa66ca2e
authored
Feb 24, 2023
by
Álvaro Domingo Fuentes
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Iteración 0 Completada
parent
d9eab8f2
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
155 additions
and
247 deletions
Civibankas/.gitkeep
Civibankas/RegistroEmpresa.html
src/main/java/com/example/civibankas/CrearOferta.html
src/main/java/com/example/civibankas/Index.html
Civibankas/Index.html → src/main/java/com/example/civibankas/InicioSesion.html
src/main/java/com/example/civibankas/Ofertas.html
src/main/java/com/example/civibankas/RegistroEmpresa.html
src/main/java/com/example/civibankas/SolicitarOferta.html
src/main/java/com/example/civibankas/VistaEmpresa.html
Civibankas/.gitkeep
deleted
100644 → 0
View file @
d9eab8f2
File mode changed
Civibankas/RegistroEmpresa.html
deleted
100644 → 0
View file @
d9eab8f2
<!DOCTYPE html>
<html
lang=
"es"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Registro de empresa
</title>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
<style>
body
{
background-color
:
#f8f9fa
;
}
main
{
background-color
:
#d3d3d3
;
}
.form-register
label
{
font-weight
:
bold
;
}
.form-register
input
[
type
=
"submit"
]
{
margin-top
:
10px
;
}
#contenido-principal
{
display
:
flex
;
flex-direction
:
column
;
justify-content
:
center
;
align-items
:
center
;
height
:
70vh
;
}
.contenido-ancho
{
max-width
:
800px
;
margin
:
0
auto
;
}
</style>
</head>
<body>
<!-- HEADER -->
<header>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<a
class=
"navbar-brand"
href=
"#"
><img
src=
"src/main/IMG/logo.png"
alt=
"Logo"
width=
"150"
height=
"50"
>
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarNav"
aria-controls=
"navbarNav"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<ul
class=
"navbar-nav"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"#"
>
Ofertas
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"#"
>
Sign Up
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"#"
>
Log In
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"#"
>
Contacto
</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- CONTENIDO PRINCIPAL -->
<main>
<div
class=
"container my-5 mx-auto"
id=
"contenido-principal"
>
<div
class=
"row"
>
<div
class=
"col-md-6 offset-md-3"
>
<h1
class=
"text-center mb-4"
>
Registro de empresa
</h1>
<form>
<div
class=
"form-group contenido-ancho"
>
<label
for=
"nombre_empresa"
>
Nombre de la empresa
</label>
<input
type=
"text"
class=
"form-control"
id=
"nombre_empresa"
placeholder=
"Introduce el nombre de la empresa"
>
</div>
<div
class=
"form-group"
>
<label
for=
"cif"
>
CIF
</label>
<input
type=
"text"
class=
"form-control"
id=
"cif"
placeholder=
"Introduce el CIF de la empresa"
>
</div>
<div
class=
"form-group"
>
<label
for=
"ubicacion"
>
Ubicación
</label>
<input
type=
"text"
class=
"form-control"
id=
"ubicacion"
placeholder=
"Introduce la ubicación de la empresa"
>
</div>
<div
class=
"form-group"
>
<label
for=
"sector"
>
Sector
</label>
<input
type=
"text"
class=
"form-control"
id=
"sector"
placeholder=
"Introduce el sector de la empresa"
>
</div>
<button
type=
"submit"
class=
"btn btn-primary"
>
Registrarse
</button>
</form>
</div>
</div>
</div>
</main>
<!-- FOOTER -->
<footer>
<div
class=
"bg-light py-3"
>
<div
class=
"container text-center"
>
<p>
Derechos reservados
©
2023 Civibankas
</p>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<script
src=
"https://code.jquery.com/jquery-3.5.1.slim.min.js"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
></script>
<script
src=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
></script>
</body>
</html>
src/main/java/com/example/civibankas/CrearOferta.html
View file @
fa66ca2e
...
@@ -19,12 +19,12 @@
...
@@ -19,12 +19,12 @@
main
{
main
{
background-color
:
#d3d3d3
;
background-color
:
#d3d3d3
;
}
}
i
</style>
</style>
</head>
</head>
<body>
<body>
<!-- HEADER -->
<header>
<header>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<a
class=
"navbar-brand"
href=
"#"
><img
src=
"src/main/IMG/logo.png"
alt=
"Logo"
width=
"150"
height=
"50"
>
</a>
<a
class=
"navbar-brand"
href=
"#"
><img
src=
"src/main/IMG/logo.png"
alt=
"Logo"
width=
"150"
height=
"50"
>
</a>
...
@@ -33,20 +33,20 @@ i
...
@@ -33,20 +33,20 @@ i
</button>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<ul
class=
"navbar-nav"
>
<ul
class=
"navbar-nav"
>
<li
class=
"nav-item"
>
<li
class=
"nav-item
active
"
>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Ofertas
</a>
<a
class=
"nav-link"
href=
"
Ofertas.html
"
>
Ofertas
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Sign Up
</a>
<a
class=
"nav-link"
href=
"
RegistroEmpresa.html
"
>
Sign Up
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Log In
</a>
<a
class=
"nav-link"
href=
"
InicioSesion.html
"
>
Log In
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Contacto
</a>
<a
class=
"nav-link"
href=
"
CrearOferta.html
"
>
Contacto
</a>
</li>
</li>
</ul>
</ul>
</div>
</div>
...
...
src/main/java/com/example/civibankas/Index.html
View file @
fa66ca2e
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Log In
</a>
<a
class=
"nav-link"
href=
"
InicioSesion.html
"
>
Log In
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
<div
class=
"col-md-8 text-center"
>
<div
class=
"col-md-8 text-center"
>
<h1>
Bienvenido a Civibankas
</h1>
<h1>
Bienvenido a Civibankas
</h1>
<p>
Aquí podrás encontrar las mejores ofertas para tu futuro.
</p>
<p>
Aquí podrás encontrar las mejores ofertas para tu futuro.
</p>
<a
href=
"
#
"
class=
"btn btn-primary"
>
Ver ofertas de empleo
</a>
<a
href=
"
Ofertas.html
"
class=
"btn btn-primary"
>
Ver ofertas de empleo
</a>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
Civibankas/Index
.html
→
src/main/java/com/example/civibankas/InicioSesion
.html
View file @
fa66ca2e
<!DOCTYPE html>
<!DOCTYPE html>
<html
lang=
"es"
>
<html
lang=
"es"
>
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Civibankas
</title>
<title>
Inicio de sesión - Civibankas
</title>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
<style>
<style>
#contenido-principal
{
#contenido-principal
{
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
justify-content
:
center
;
justify-content
:
center
;
align-items
:
center
;
align-items
:
center
;
height
:
70vh
;
height
:
70vh
;
}
}
main
{
main
{
background-color
:
#d3d3d3
;
background-color
:
#d3d3d3
;
}
}
</style>
</style>
</head>
</head>
<body>
<body>
<!-- HEADER -->
<!-- HEADER -->
<header>
<header>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<a
class=
"navbar-brand"
href=
"#"
><img
src=
"src/main/IMG/logo.png"
alt=
"Logo"
width=
"150"
height=
"50"
>
</a>
<a
class=
"navbar-brand"
href=
"#"
><img
src=
"src/main/IMG/logo.png"
alt=
"Logo"
width=
"150"
height=
"50"
>
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarNav"
aria-controls=
"navbarNav"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarNav"
aria-controls=
"navbarNav"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
<span
class=
"navbar-toggler-icon"
></span>
</button>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<ul
class=
"navbar-nav"
>
<ul
class=
"navbar-nav"
>
<li
class=
"nav-item active"
>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"Ofertas.html"
>
Ofertas
</a>
<a
class=
"nav-link"
href=
"Ofertas.html"
>
Ofertas
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"#"
>
Log In
</a>
<a
class=
"nav-link"
href=
"InicioSesion.html"
>
Log In
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
</li>
</li>
</ul>
</ul>
</div>
</div>
</nav>
</nav>
</header>
</header>
<!-- CONTENIDO PRINCIPAL -->
<main>
<main>
<div
class=
"container my-5"
id=
"contenido-principal"
>
<div
class=
"container mx-auto"
id=
"contenido-principal"
>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-md-6 offset-md-3"
>
<div
class=
"col-md-8 text-center"
>
<h1
class=
"text-center mb-4"
>
Inicio de sesión - Empresa
</h1>
<h1>
Bienvenido a Civibankas
</h1>
<form>
<p>
Aquí podrás encontrar las mejores ofertas para tu futuro.
</p>
<div
class=
"form-group"
>
<a
href=
"#"
class=
"btn btn-primary"
>
Ver ofertas de empleo
</a>
<label
for=
"email"
>
Correo electrónico
</label>
</div>
<input
type=
"email"
class=
"form-control"
id=
"email"
placeholder=
"Introduce tu correo electrónico"
>
</div>
</div>
</div>
<div
class=
"form-group"
>
</main>
<label
for=
"password"
>
Contraseña
</label>
<input
type=
"password"
class=
"form-control"
id=
"password"
placeholder=
"Introduce tu contraseña"
>
<!-- FOOTER -->
</div>
<footer>
<a
href=
"VistaEmpresa.html"
><button
type=
"submit"
class=
"btn btn-primary"
>
Iniciar sesión
</button></a>
<div
class=
"bg-light py-3"
>
</form>
<div
class=
"container text-center"
>
</div>
<p>
Derechos reservados
©
2023 Civibankas
</p>
</div>
</div>
</div>
</div>
</main>
</footer>
<footer
class=
"bg-light py-3"
>
<div
class=
"container text-center"
>
<!-- SCRIPTS -->
<p>
©
Civibankas 2023
</p>
<script
src=
"https://code.jquery.com/jquery-3.5.1.slim.min.js"
></script>
</div>
<script
src=
"https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
></script>
</footer>
<script
src=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
></script>
<script
src=
"js/jquery-3.6.0.min.js"
></script>
</body>
<script
src=
"js/bootstrap.bundle.min.js"
></script>
</html>
</body>
</html>
src/main/java/com/example/civibankas/Ofertas.html
View file @
fa66ca2e
...
@@ -6,8 +6,8 @@
...
@@ -6,8 +6,8 @@
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"ie=edge"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"ie=edge"
>
<title>
Búsqueda de ofertas de empleo
</title>
<title>
Búsqueda de ofertas de empleo
</title>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.
3.1/css/bootstrap.min.css"
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.
5.2/css/bootstrap.min.css"
>
integrity=
"sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin=
"anonymous"
>
<style>
<style>
#contenido-principal
{
#contenido-principal
{
...
@@ -25,7 +25,6 @@
...
@@ -25,7 +25,6 @@
</style>
</style>
</head>
</head>
<body>
<body>
<!-- HEADER -->
<!-- HEADER -->
<header>
<header>
...
@@ -46,7 +45,7 @@
...
@@ -46,7 +45,7 @@
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Log In
</a>
<a
class=
"nav-link"
href=
"
InicioSesion.html
"
>
Log In
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
...
...
src/main/java/com/example/civibankas/RegistroEmpresa.html
View file @
fa66ca2e
...
@@ -5,20 +5,9 @@
...
@@ -5,20 +5,9 @@
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Registro de empresa
</title>
<title>
Registro de empresa
</title>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
<style>
<style>
body
{
background-color
:
#f8f9fa
;
}
main
{
background-color
:
#d3d3d3
;
}
.form-register
label
{
font-weight
:
bold
;
}
.form-register
input
[
type
=
"submit"
]
{
margin-top
:
10px
;
}
#contenido-principal
{
#contenido-principal
{
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
...
@@ -26,11 +15,12 @@
...
@@ -26,11 +15,12 @@
align-items
:
center
;
align-items
:
center
;
height
:
70vh
;
height
:
70vh
;
}
}
.contenido-ancho
{
max-width
:
800px
;
main
{
margin
:
0
auto
;
background-color
:
#d3d3d3
;
}
}
</style>
</style>
</head>
</head>
<body>
<body>
...
@@ -43,20 +33,20 @@
...
@@ -43,20 +33,20 @@
</button>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<ul
class=
"navbar-nav"
>
<ul
class=
"navbar-nav"
>
<li
class=
"nav-item"
>
<li
class=
"nav-item
active
"
>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Ofertas
</a>
<a
class=
"nav-link"
href=
"
Ofertas.html
"
>
Ofertas
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Sign Up
</a>
<a
class=
"nav-link"
href=
"
RegistroEmpresa.html
"
>
Sign Up
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Log In
</a>
<a
class=
"nav-link"
href=
"
InicioSesion.html
"
>
Log In
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Contacto
</a>
<a
class=
"nav-link"
href=
"
CrearOferta.html
"
>
Contacto
</a>
</li>
</li>
</ul>
</ul>
</div>
</div>
...
@@ -86,7 +76,8 @@
...
@@ -86,7 +76,8 @@
<label
for=
"sector"
>
Sector
</label>
<label
for=
"sector"
>
Sector
</label>
<input
type=
"text"
class=
"form-control"
id=
"sector"
placeholder=
"Introduce el sector de la empresa"
>
<input
type=
"text"
class=
"form-control"
id=
"sector"
placeholder=
"Introduce el sector de la empresa"
>
</div>
</div>
<button
type=
"submit"
class=
"btn btn-primary"
>
Registrarse
</button>
<a
href=
"VistaEmpresa.html"
><button
type=
"button"
class=
"btn btn-primary"
>
Registrarse
</button></a>
</form>
</form>
</div>
</div>
</div>
</div>
...
...
src/main/java/com/example/civibankas/SolicitarOferta.html
View file @
fa66ca2e
...
@@ -4,7 +4,8 @@
...
@@ -4,7 +4,8 @@
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Aplicación a oferta de empleo
</title>
<title>
Aplicación a oferta de empleo
</title>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
<style>
<style>
#contenido-principal
{
#contenido-principal
{
...
@@ -42,7 +43,7 @@
...
@@ -42,7 +43,7 @@
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
<a
class=
"nav-link"
href=
"RegistroEmpresa.html"
>
Sign Up
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#
"
>
Log In
</a>
<a
class=
"nav-link"
href=
"
InicioSesion.html
"
>
Log In
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
<a
class=
"nav-link"
href=
"CrearOferta.html"
>
Contacto
</a>
...
@@ -51,7 +52,6 @@
...
@@ -51,7 +52,6 @@
</div>
</div>
</nav>
</nav>
</header>
</header>
<main>
<main>
<div
class=
"container my-5"
id=
"contenido-principal"
>
<div
class=
"container my-5"
id=
"contenido-principal"
>
<div
class=
"row"
>
<div
class=
"row"
>
...
...
src/main/java/com/example/civibankas/VistaEmpresa.html
View file @
fa66ca2e
...
@@ -6,38 +6,54 @@
...
@@ -6,38 +6,54 @@
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"ie=edge"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"ie=edge"
>
<title>
Panel de control de la empresa
</title>
<title>
Panel de control de la empresa
</title>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
>
integrity=
"sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
href=
"styles.css"
>
</head>
<body>
<style>
#contenido-principal
{
display
:
flex
;
flex-direction
:
column
;
justify-content
:
center
;
align-items
:
center
;
height
:
70vh
;
}
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
main
{
<div
class=
"container"
>
background-color
:
#d3d3d3
;
<a
class=
"navbar-brand"
href=
"#"
>
Civibankas
</a>
}
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarNav"
aria-controls=
"navbarNav"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
</style>
</head>
<body>
<!-- HEADER -->
<header>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<a
class=
"navbar-brand"
href=
"#"
><img
src=
"src/main/IMG/logo.png"
alt=
"Logo"
width=
"150"
height=
"50"
>
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarNav"
aria-controls=
"navbarNav"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
<span
class=
"navbar-toggler-icon"
></span>
</button>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<div
class=
"collapse navbar-collapse"
id=
"navbarNav"
>
<ul
class=
"navbar-nav ml-auto"
>
<ul
class=
"navbar-nav"
>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"Index.html"
>
Inicio
</a>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#"
>
Mis o
fertas
</a>
<a
class=
"nav-link"
href=
"
Ofertas.html"
>
O
fertas
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#"
>
Crear oferta
</a>
<a
class=
"nav-link"
href=
"
RegistroEmpresa.html"
>
Sign Up
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#"
>
Modificar oferta
</a>
<a
class=
"nav-link"
href=
"
InicioSesion.html"
>
Log In
</a>
</li>
</li>
<li
class=
"nav-item"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"
#"
>
Eliminar oferta
</a>
<a
class=
"nav-link"
href=
"
CrearOferta.html"
>
Contacto
</a>
</li>
</li>
</ul>
</ul>
</div>
</div>
</
di
v>
</
na
v>
</
nav
>
</
header
>
<main>
<main>
<div
class=
"container my-5"
id=
"contenido-principal"
>
<div
class=
"container my-5"
id=
"contenido-principal"
>
<div
class=
"row"
>
<div
class=
"row"
>
...
@@ -61,11 +77,21 @@
...
@@ -61,11 +77,21 @@
<a
href=
"#"
class=
"card-link"
>
Eliminar oferta
</a>
<a
href=
"#"
class=
"card-link"
>
Eliminar oferta
</a>
</div>
</div>
</div>
</div>
<a
href=
"
#
"
class=
"btn btn-primary"
>
Crear nueva oferta
</a>
<a
href=
"
CrearOferta.html
"
class=
"btn btn-primary"
>
Crear nueva oferta
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</main>
<footer
class=
"bg-light py-3"
>
<div
class=
"container text-center"
>
<p>
©
Civibankas 2023
</p>
</div>
</footer>
<script
src=
"https://code.jquery.com/jquery-3.3.1.slim.min.js"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
></script>
<script
src=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
></script>
</body>
</html>
</body>
</body>
</html>
</html>
\ 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