<%@ 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>