login.jsp 566 Bytes
Newer Older
Emanuel Lugo committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<%@ 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">
        <table>
            <tr><td>User Name:</td> <td><input type="text" name = "username"></td></tr>
            <tr><td>Password:</td><td><input type="password" name="password"></td></tr>
Emanuel Lugo committed
14
            <tr><td><input type="submit" value="Login"/></td></tr>
Emanuel Lugo committed
15 16 17 18 19 20 21

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

</body>
</html>