Control Panel Sign in

by ritcheyer

HTML

<!--
Using this:
http://ued/present/Control%20Panel/Redux%20Phase_1/Redux_CP_SignUp_Registration.jpg
-->
<div id="cpSignIn">
    <h4>Control Panel Sign In</h4>
    <p><a href="#" title="Need to Sign Up?">Need to Sign Up?</a></p>
    
    <div>
        <label for="acctType">Account Type</label><br />
        <input type="radio" />Agent
        <input type="radio" />Office
        <input type="radio" />MLS
    </div>
    <div>
        <label for="userName">User Name <span>(MLS ID)</span></label><br />
        <input type="input" id="userName" value="MLS ID" />
    </div>
    <div>
        <label for="password">Password</label><br />
        <input type="input" id="password"  />
    </div>
    <div>
        <label for="mlsListings">MLS</label><br />
        <select name="mlsListings" id="mlsListings">
            <option value="option1">option1</option>
            <option value="option2">option2</option>
        </select>
    </div>
    <div>
        <input type="checkbox" name="rememberMe" value="" id="rememberMe" />
        <label for="rememberMe" class="checkbox">Remember Me</label>
    </div>
    <button type="button">Sign In</button>
</div>