Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Álvaro Domingo Fuentes
/
UJAdin
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
bfbd600a
authored
Feb 23, 2024
by
Álvaro Domingo Fuentes
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Añadido vista despues del login
parent
1c4f1789
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
1 deletions
src/main/webapp/VistaUsuarioEmpresaLog.html
src/main/webapp/login.html
src/main/webapp/VistaUsuarioEmpresaLog.html
0 → 100644
View file @
bfbd600a
<!DOCTYPE html>
<html
lang=
"es"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Dashboard - UJAdin
</title>
<link
rel=
"stylesheet"
href=
"style.css"
>
</head>
<body>
<header>
<div
class=
"container"
>
<nav
class=
"navbar"
>
<a
href=
"index.html"
class=
"logo"
>
UJAdin
</a>
<ul
class=
"nav-links"
>
<li><a
href=
"index.html"
>
Inicio
</a></li>
<li><a
href=
"registro.html"
>
Registrarse
</a></li>
<li><a
href=
"login.html"
>
Iniciar Sesión
</a></li>
<li><a
href=
"ofertas.html"
>
Ofertas de Prácticas
</a></li>
</ul>
</nav>
</div>
</header>
<div
class=
"container"
>
<h1>
Ofertas Presentadas
</h1>
<button
class=
"btn"
onclick=
"location.href='#'"
>
Crear Nueva Oferta
</button>
<div
class=
"ofertas-container"
>
<!-- Ejemplo de oferta -->
<div
class=
"oferta"
>
<h2>
Asistente web de la Facultad de ciencias experimentales
</h2>
<p>
DSe necesita un estudiante en el grado de Ingerniería Informática para ayudar en la gestión de la web de la facultad
</p>
<button
class=
"btn btn-small"
onclick=
"location.href='#'"
>
Modificar
</button>
<button
class=
"btn btn-small btn-danger"
onclick=
"location.href='#'"
>
Eliminar
</button>
</div>
<!-- Replicar el bloque anterior para cada oferta -->
</div>
</div>
</body>
</html>
src/main/webapp/login.html
View file @
bfbd600a
...
...
@@ -32,7 +32,7 @@
<label
for=
"password"
>
Contraseña:
</label>
<input
type=
"password"
id=
"password"
name=
"password"
required
>
</div>
<button
type=
"submit"
>
Entrar
</button>
<button
type=
"submit"
>
<a
href=
"VistaUsuarioEmpresaLog.html"
>
Entrar
</a>
</button>
</form>
</div>
</main>
...
...
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