Commit e5804c67 by Jose Baez

Merge branch 'ramaAux' into 'develop'

Rama aux

See merge request !42
parents 10379695 274c63cc
...@@ -23,6 +23,10 @@ ...@@ -23,6 +23,10 @@
</head> </head>
<body> <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"> <div class="container">
<h1> CREAR BOOTCAMP </h1> <h1> CREAR BOOTCAMP </h1>
......
...@@ -25,7 +25,15 @@ ...@@ -25,7 +25,15 @@
</head> </head>
<body> <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> <div>
<h1> CREAR LENGUAJE </h1> <h1> CREAR LENGUAJE </h1>
<%@ page import="com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.lenguaje.LenguajeDao, java.util.List,java.util.Iterator" %> <%@ page import="com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.lenguaje.LenguajeDao, java.util.List,java.util.Iterator" %>
......
...@@ -25,8 +25,12 @@ ...@@ -25,8 +25,12 @@
</head> </head>
<body> <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> <div>
<h1> CREAR PROFESOR Y FILTRAR </h1> <h1> CREAR PROFESOR Y FILTRAR </h1>
<%@ page import="com.roshka.proyectofinal.entity.Profesor, com.roshka.proyectofinal.profesor.ProfesorDao, java.util.List,java.util.Iterator" %> <%@ page import="com.roshka.proyectofinal.entity.Profesor, com.roshka.proyectofinal.profesor.ProfesorDao, java.util.List,java.util.Iterator" %>
......
...@@ -52,3 +52,7 @@ ...@@ -52,3 +52,7 @@
.menu li:hover { .menu li:hover {
background-color: rgb(18, 18, 98); background-color: rgb(18, 18, 98);
} }
.botones a{
color: black;
}
\ No newline at end of file
...@@ -8,10 +8,6 @@ ...@@ -8,10 +8,6 @@
}%> }%>
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
...@@ -52,6 +48,10 @@ ...@@ -52,6 +48,10 @@
a { a {
color: white; color: white;
} }
.botones a {
color: black;
}
.menu { .menu {
width: 50%; width: 50%;
...@@ -81,6 +81,12 @@ ...@@ -81,6 +81,12 @@
</head> </head>
<body> <body>
<div class="botones">
<a href="logout">LOGOUT</a><br>
<a href="index.html">INICIO</a><br>
</div>
<div class="header"> <div class="header">
<h1> MENU TH</h1> <h1> MENU TH</h1>
......
<%@ 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"%> <%@ 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" %> <%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %>
<!DOCTYPE html> <!DOCTYPE html>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment