login.jsp 579 Bytes
Newer Older
Emanuel Lugo committed
1 2 3 4 5 6 7 8 9 10
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
    <title>BootcampsLogin</title>
</head>
<body>
    <div align=" center">
    <h1>User Login Form</h1>
    <form action="login" method="post">
11 12
        <table align = "center">
            <tr><td>Correo:</td> <td><input type="text" name = "correo"></td></tr>
Emanuel Lugo committed
13
            <tr><td>Password:</td><td><input type="password" name="password"></td></tr>
14

Emanuel Lugo committed
15
            <tr><td><input type="submit" value="Login"/></td></tr>
Emanuel Lugo committed
16 17 18 19 20 21 22

        </table>
    </form>    
    </div>

</body>
</html>