menu.jsp 1.68 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>
30

Yovan Martinez committed
31 32 33
    <div class="header">
        <h1> MENU TH</h1>
        <h2> EN LOS SIGUIENTES LINKS PUEDE MODIFICAR, AGREGAR O ELIMINAR DATOS DE LA BASE DE DATOS DEL BOOTCAMP </h2>
Angel Zarate committed
34
        <h3>PUEDE ACCEDER A LOS SIGUIENTES LINKS:</h3>
Yovan Martinez committed
35
    </div>
36 37


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

Yovan Martinez committed
42 43 44 45 46
    <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>
47 48
                <li><a href="formulario_lenguaje.jsp"> MANAGE LENGUAJES  </a></li>
                <li><a href="formulario_profesor.jsp"> MANAGE PROFESORES </a></li>
49

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


Yovan Martinez committed
54
    </div>
55

Yovan Martinez committed
56
</body>
57

Yovan Martinez committed
58
</html>