<!DOCTYPE html>
<html>

<!--
    A Form that connects to a JSP

    by: Sharon Tuttle
    last modified: 4-3-13
-->

<head>  
    <title> Form for St10JspThatImports JSP </title>
    <meta charset="utf-8" />
</head> 

<body> 
    <h1> Form for St10JspThatImports JSP </h1>

    <!-- NOTE THAT WE ARE USING METHOD POST HERE!!!
         do NOT pass passwords (or other sensitive info) using method GET!
    -->

    <form method="post" 
          action="http://nrs-projects.humboldt.edu:8888/examples/jsp/student/St10JspThatImports.jsp">
        <label> Oracle username: 
            <input type="text" name="username" /> </label> <br />
        <label> Oracle password: 
            <input type="password" name="password" /> </label> <br />
        <input type="submit" name="submit values" />
    </form>

    <hr />   

    <p>
        <a href="http://validator.w3.org/check/referer">
        Validate this HTML5 page
        </a>
    </p>

    <p>
        For full credit, this page must also pass the tests at
        <a href="http://lint.brihten.com/html/">
        http://lint.brihten.com/html/ </a> when its URL is
        entered (and without modifying the default options).
    </p>

    <p>
        <a href=
           "http://jigsaw.w3.org/css-validator/check/referer?profile=css3">
            <img src="http://jigsaw.w3.org/css-validator/images/vcss" 
                 alt="Valid CSS3!" height="31" width="88" />
        </a>
    </p>

</body> 
</html>