CINXE.COM

TeeQuest.net Logon

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>TeeQuest.net Logon</title> <style type="text/css"> body { font-size: .85em; font-family: "Trebuchet MS" , Verdana, Helvetica, Sans-Serif; color: #232323; background-color: #fff; } header, footer, nav, section { display: block; } /* Styles for basic forms -----------------------------------------------------------*/ fieldset { border: 0px solid #ddd; padding: 0 1.4em 1.4em 1.4em; margin: 0 0 1.5em 0; } legend { font-size: 1.2em; font-weight: bold; margin: 0px 0px 20px 0px; } textarea { min-height: 75px; } .editor-label { margin: 1em 0 0 0; } .editor-field { margin: 0.5em 0 0 0; } /* Styles for validation helpers -----------------------------------------------------------*/ .field-validation-error { color: #ff0000; } .field-validation-valid { display: none; } .input-validation-error { border: 1px solid #ff0000; background-color: #ffeeee; } .validation-summary-errors { font-weight: bold; color: #ff0000; } .validation-summary-valid { display: none; } /* Logon -----------------------------------------------------------*/ #logon-container { margin: 100px auto; width: 350px; } #logon { padding: 10px; background-color: #D9E7F8; } #validation-summary { margin: 20px 0px; } #validation-summary ul { margin: 10px; padding: 0px; } #validation-summary li { margin: 0px; padding: 0px; list-style-position: inside; } </style> </head> <body> <div id="logon-container"> <form action="/portal/logon?ReturnUrl=%2fportal" method="post"> <div id="logon"> <fieldset> <legend>TeeQuest Portal</legend> <div class="editor-label"> <label for="UserName">Username</label> </div> <div class="editor-field"> <input data-val="true" data-val-required="Username is required." id="UserName" name="UserName" type="text" value="" /> </div> <div class="editor-label"> <label for="Password">Password</label> </div> <div class="editor-field"> <input data-val="true" data-val-required="Password is required." id="Password" name="Password" type="password" /> </div> <div class="validation-summary-valid" data-valmsg-summary="true" id="validation-summary"><span>Login was unsuccessful.</span> <ul><li style="display:none"></li> </ul></div> <p> <input type="submit" value="Log On" /> </p> </fieldset> </div> </form> </div> </body> </html>