Advertisement
Guest User

HTML Code

a guest
Mar 26th, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.20 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
  4. <meta name="apple-mobile-web-app-capable" content="yes" />
  5. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  6. <link rel="apple-touch-icon-precomposed" href="images/icon.png" />
  7. <link rel="apple-touch-startup-image" href="images/startup.png" />
  8. <script>
  9.     function BlockElasticScroll(event) {
  10.         event.preventDefault();
  11.     }
  12. </script>
  13. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
  14.         <style>
  15.             /* App custom styles */
  16.         </style>
  17.         <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js">
  18.         </script>
  19.         <script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js">
  20.         </script>
  21. </head>
  22. <body ontouchmove="BlockElasticScroll(event);">
  23. <div data-role="page" id="page1">
  24.             <div data-theme="a" data-role="header">
  25.                 <h3>
  26.                     Home
  27.                 </h3>
  28.             </div>
  29.             <div data-role="content">
  30.                 <div data-role="fieldcontain">
  31.                     <fieldset data-role="controlgroup">
  32.                         <label for="username">
  33.                             Username
  34.                         </label>
  35.                         <input id="username" placeholder="" name="username" value="" type="text" />
  36.                     </fieldset>
  37.                 </div>
  38.                 <div data-role="fieldcontain">
  39.                     <fieldset data-role="controlgroup">
  40.                         <label for="password">
  41.                             Password
  42.                         </label>
  43.                         <input id="password" placeholder="" value="" type="password" />
  44.                     </fieldset>
  45.                 </div>
  46.                 <form action="checklogin.php" method="POST">
  47.                 <input type="submit" name="submit" data-theme="b" data-icon="home" data-iconpos="left" value="Login" />
  48.                 </form>
  49.             </div>
  50.         </div>
  51.         <script>
  52.             //App custom javascript
  53.         </script>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement