Commit e5804c67 by Jose Baez

Merge branch 'ramaAux' into 'develop'

Rama aux

See merge request !42
parents 10379695 274c63cc
......@@ -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>
......
......@@ -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" %>
......
......@@ -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" %>
......
......@@ -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
......@@ -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>
......
<%@ 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>
......
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