Response title
This is preview!
<!DOCTYPE html> <html> <head> <title>login</title> <!-- meta --> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- apple-iphone specific stuff --> <meta name="apple-mobile-web-app-capable" content="yes"/> <meta name="apple-mobile-web-app-status-bar-style" content="white"> <link rel="apple-touch-icon" href="images/opensource_icon.png"/> <!-- credits: who made this world a better place? --> <meta name="author" content="user"> <!-- tools: what was used to make this world a better place --> <meta name="editor" content="pdt eclipse"> <!-- default jquery mobile css --> <link rel="stylesheet" type="text/css" href="../library/css/jquery.mobile-1.3.0.min.css" /> <!-- custom project css --> <link rel="stylesheet" type="text/css" href="css/style.css"/> <!-- default js libraries: jquery, jquery mobile --> <script type="text/javascript" src="../library/js/jquery-1.9.1.min.js"></script> <script type="text/javascript"> $(document).bind("mobileinit", function(){ $.extend( $.mobile , { ajaxFormsEnabled: false }); }); </script> <script type="text/javascript" src="../library/js/jquery.mobile-1.3.0.min.js"></script> <!-- timer plugin --> <script type="text/javascript" src="../library/js/jquery.timer.js"></script> <!-- js-client-side-md5, so that no password gets over network unencrypted, esp not during registration --> <script type="text/javascript" src="../library/js/webtoolkit.md5.js"></script> <!-- nice input validation plugin --> <script type="text/javascript" src="../library/js/jquery.validate.js"></script> <!-- provices conversion function --> <script type="text/javascript" src="../library/js/convert.js"></script> <!-- provices string operation functions --> <script type="text/javascript" src="../library/js/strings.js"></script> <!-- client side functions to process server response --> <script type="text/javascript" src="../library/js/gigalaunch.js"></script> <!-- page specific js includes & custom js code --> <script type="text/javascript" src="js/login.js"></script> </head> <body> <div data-role="page" id="login"> <div data-role="header" data-position="inline"> <img id="logo" src="images/projectlogo.png" style="width:200px;"/> </div> <div data-role="content"> <form id="loginForm" class="loginForm" action="login.php" method="post" accept-charset="UTF-8" data-ajax="false"> <legend> LOGIN </legend> <!-- where errors are displayed (put it directly next to the interactive element, that can produce an error) --> <div id="error" data-role="collapsible"> <h3>error/status</h3> <p> <div id="details">details</div> </p> </div> <!-- credentials --> <!-- username input --> <label for="username">UserName*:</label> <input type="text" name="username" id="username" maxlength="50" /> <!-- password input --> <label for="password">Password*:</label> <input type="password" name="password" id="password" maxlength="50" /> <!-- submit button --> <input type="submit" name="Submit" value="login" /> <!-- this should enable submit-on-enter-key --> <input type="hidden" name="submitted" id="submitted" value="1" /> </form> </div> <div data-role="footer"> <!-- if a user is not registered yet, they can click on this button --> <a href="useradd.php" rel="external">register</a> </div> </div> </body> </html>
© 2013 jQuery Foundation
Sponsored by and others.