loginprocessjsp.jsp 854 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Procesando Inicio de Sesión</title>
</head>
<body>
    <%
        String username = request.getParameter("username");
        String password = request.getParameter("password");

        // Verifica las credenciales (aquí se haría la lógica real de autenticación)
        if ("username".equals(username) && "password".equals(password)) {
            session.setAttribute("username", username);
            response.sendRedirect("welcomejsp.jsp");
        } else {
    %>
            <h2>Error de inicio de sesión</h2>
            <p>Usuario o contraseña incorrectos. Inténtelo de nuevo.</p>
            <a href="login.jsp">Volver al inicio de sesión</a>
    <%
        }
    %>
</body>
</html>