| <html xmlns:wicket> |
| <body> |
| <wicket:panel> |
| <div class="caption inlogcaption">Aanmelden voor <span wicket:id="naam"></span></div> |
| <form id="signInForm" wicket:id="signInForm"> |
| <span class="inloglabel">Gebruikersnaam</span><span class="inloglabel_value"><input type="text" value="" wicket:id="username" class="label_active inlogbox" id="username"/></span> |
| <span class="inloglabel">Wachtwoord</span><span class="inloglabel_value"><input type="password" value="" wicket:id="password" class="label_active inlogbox" id="password" autocomplete="off" /></span> |
| <span wicket:id="rememberMeRow"><span class="inloglabel"> </span><span class="inloglabel_value"><input type="checkbox" id="datsave" wicket:id="rememberMe" style="position:relative;left:-3px;"/><label class="inlogcb" for=datsave>Gegevens opslaan</label></span></span> |
| <span class="inloglabel"> </span><span class="inloglabel_value"><div class="std_button btn_left inlogbtn"><a onClick="form=getElementById('signInForm');form.submit();return true;" href="#"><span>Aanmelden</span></a></div></span> |
| <input type="submit" style="width:0px; height:0px; position:absolute; top:-300px;" tabIndex="-1"/> |
| </form> |
| <span id="loginError" wicket:id="feedback"/> |
| <script type="text/javascript"> |
| if(document.getElementById('username').value == "") |
| document.getElementById('username').focus(); |
| else |
| document.getElementById('password').focus(); |
| </script> |
| </wicket:panel> |
| </body> |
| </html> |