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

            }%>

11 12
<!DOCTYPE html>
<html>
Yovan Martinez committed
13

14
<head>
Yovan Martinez committed
15
    <link rel="shortcut icon" href="imagenes/roshkaicon.ico" sizes="any" />
Angel Zarate committed
16
</head>
17
<style>
Yovan Martinez committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
    <link href="https://fonts.googleapis.com/css2?family=Concert+One&family=Francois+One&family=Satisfy&family=Staatliches&display=swap" rel="stylesheet">* {
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Concert One', cursive;
        font-family: 'Francois One', sans-serif;
        font-family: 'Satisfy', cursive;
        font-family: 'Staatliches', cursive;
        font-size: 13px
    }
    
    .header,
    .footer {
        background-color: rgb(18, 18, 98);
        color: white;
        padding: 60px;
    }
    
    .column {
        float: left;
        padding: 30px;
    }
    
    .clearfix::after {
        content: "";
        clear: both;
        display: table;
    }
47

Yovan Martinez committed
48 49 50
    a {
        color: white;
    }
51 52 53 54
    .botones a {

    color: black;
    }
Yovan Martinez committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    
    .menu {
        width: 50%;
    }
    
    .content {
        width: 50%;
    }
    
    .menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    
    .menu li {
        padding: 8px;
        margin-bottom: 8px;
        background-color: rgb(18, 18, 98);
        color: #ffffff;
    }
    
    .menu li:hover {
        background-color: rgb(18, 18, 98);
    }
80 81
</style>
</head>
Yovan Martinez committed
82

83
<body>
84 85 86 87 88 89
     <div class="botones">
            <a href="logout">LOGOUT</a><br>
            <a href="index.html">INICIO</a><br>
     </div>


90

Yovan Martinez committed
91 92 93 94
    <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>
    </div>
95 96


Yovan Martinez committed
97 98 99
    <div class="column content">
        <h1>PUEDE ACCEDER A LOS SIGUIENTES LINKS:</h1>
    </div>
100

Yovan Martinez committed
101 102 103 104 105
    <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>
106 107
                <li><a href="formulario_lenguaje.jsp"> MANAGE LENGUAJES  </a></li>
                <li><a href="formulario_profesor.jsp"> MANAGE PROFESORES </a></li>
108

Yovan Martinez committed
109 110
            </ul>
        </div>
111 112


Yovan Martinez committed
113
    </div>
114

Yovan Martinez committed
115
</body>
116

Yovan Martinez committed
117
</html>