ejemplos jsp

parent 1c1a5b7e
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Iniciar Sesión</title>
</head>
<body>
<h2>Iniciar Sesión</h2>
<form action="loginprocessjsp.jsp" method="post">
<label for="username">Usuario:</label>
<input type="text" id="username" name="username" required><br><br>
<label for="password">Contraseña:</label>
<input type="password" id="password" name="password" required><br><br>
<input type="submit" value="Iniciar Sesión">
</form>
</body>
</html>
<%@ 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>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Cerrar Sesión</title>
</head>
<body>
<%
session.invalidate();
%>
<h2>Sesión cerrada correctamente</h2>
<a href="loginjsp.jsp">Volver al inicio de sesión</a>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bienvenido</title>
</head>
<body>
<h2>Bienvenido, <%= session.getAttribute("username") %>!</h2>
<a href="logoutjsp.jsp">Cerrar sesión</a>
</body>
</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