login.jsp 581 Bytes
Newer Older
Emanuel Lugo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<%@ 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>
            <tr><td></td> <td></td><input type="sumbmit" value="Login"></td></tr>

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

</body>
</html>