menu.jsp 1.69 KB
Newer Older
Emanuel Lugo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
   <%@ 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;

            }%>





15 16
<!DOCTYPE html>
<html>
Yovan Martinez committed
17

18
<head>
Yovan Martinez committed
19
    <link rel="shortcut icon" href="imagenes/roshkaicon.ico" sizes="any" />
Angel Zarate committed
20 21
    <link rel="stylesheet" href="menulogin.css">
    <link href="https://fonts.googleapis.com/css2?family=Concert+One&family=Francois+One&family=Satisfy&family=Staatliches&display=swap" rel="stylesheet">
Yovan Martinez committed
22
    
23
</head>
Yovan Martinez committed
24

Angel Zarate committed
25 26 27
</head>

   
28
<body>
Angel Zarate committed
29
    <div class="logo"><img src="imagenes/logo-roshka.svg" alt="logo-roshka"></div>
Yovan Martinez committed
30
    <div class="header">
31
        <h1>Bienvenido! al  MENU TH</h1>
Yovan Martinez committed
32
        <h2> EN LOS SIGUIENTES LINKS PUEDE MODIFICAR, AGREGAR O ELIMINAR DATOS DE LA BASE DE DATOS DEL BOOTCAMP </h2>
Angel Zarate committed
33
        <h3>PUEDE ACCEDER A LOS SIGUIENTES LINKS:</h3>
Yovan Martinez committed
34
    </div>
35 36


Angel Zarate committed
37
   <!--  <div class="column content">
Yovan Martinez committed
38
        <h1>PUEDE ACCEDER A LOS SIGUIENTES LINKS:</h1>
Angel Zarate committed
39
    </div> -->
40

Yovan Martinez committed
41 42 43 44 45
    <div class="clearfix">
        <div class="column menu">
            <ul>
                <li><a href="formulario_bootcamp.jsp"> MANAGE BOOTCAMP </a></li>
                <li><a href="filtros-postulante"> MANAGE POSTULANTE </a></li>
46 47
                <li><a href="formulario_lenguaje.jsp"> MANAGE LENGUAJES  </a></li>
                <li><a href="formulario_profesor.jsp"> MANAGE PROFESORES </a></li>
48

Yovan Martinez committed
49 50
            </ul>
        </div>
51 52


Yovan Martinez committed
53
    </div>
54

Yovan Martinez committed
55
</body>
56

Yovan Martinez committed
57
</html>