I have designed my own login page for my application however it does not seem to work

0
Hi, I have designed my own login page for my application, however it doesn't work. I have looked at the basic login page, and can't see where i am going wrong. Here is my css: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="robots" content="noindex, nofollow"> <title>Submission Tracker</title> <link rel="SHORTCUT ICON" href="ui/theme-custom/images/favicon.ico"> <script type="text/javascript" src="ui/js/login_i18n.js"></script> <script type="text/javascript" src="ui/js/login.js"></script> <script type="text/javascript"> window.mxconfig = { xasBase : '/xas/' } </script> <style type="text/css"> @import "ui/theme-custom/logincsspro.css"; @import "ui/yui/resst-fonts.css"; </style> <body onload="setup()"> <div id="contentPane"> <div id="jscheck" class="scriptWarning"> This application requires JavaScript.<br /> If you have JavaScript enabled, please contact the administrator. </div> <form id="login" class="loginForm"> <p> <label for="username">Username</label> <input name="username" class="text-input" type="textfield" /> </p> <br style="clear: both;" /> <p> <label for="password">Password</label> <input name="password" class="text-input" type="password" /> </p> <br style="clear: both;" /> <p> <input class="button" type="submit" value="Sign In" id="submit"/> </p> <p><div id="result" class="loginResult"></div> </p> </form> </div> </div> <div id="dummy"></div> <div id="dummy2"></div> </body> </html>
asked
0 answers