<!DOCTYPE html>
<html>

<!--
    Leads to a JSP that shows employees' last names, departments, and
    salaries that are greater than the input salary

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

<head>  
    <title> Login and Specify Minimum Desired Salary </title>
    <meta charset="utf-8" />

    <link href="lab11-form.css" type="text/css" 
          rel="stylesheet" />
</head> 

<body> 
    <h1> Login and Specify Minimum Desired Salary </h1>

    <form method="post" 
          action="REPLACE-WITH-YOUR-JSP-URL">
    <fieldset>
        <legend>Login and Specify Minimum Salary</legend>
        <label class="heading" for="username">Username:</label>
        <input type="text" name="username" id="username" 
               size="5" /> <br />

        <label class="heading" for="password"> Password: </label>
        <input type="password" name="password" id="password" 
               size="10" /> <br />

        <label class="heading" for="min-salary">
               Min Salary:</label>
        <input type="text" name="min-salary" id="min-salary" 
               size="5" /> <br />

        <input type="submit" value="Sign In" />
    </fieldset>
</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>