Advertisement
Guest User

index.html

a guest
Nov 6th, 2013
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3.    Licensed to the Apache Software Foundation (ASF) under one
  4.    or more contributor license agreements.  See the NOTICE file
  5.    distributed with this work for additional information
  6.    regarding copyright ownership.  The ASF licenses this file
  7.    to you under the Apache License, Version 2.0 (the
  8.    "License"); you may not use this file except in compliance
  9.    with the License.  You may obtain a copy of the License at
  10.  
  11.    http://www.apache.org/licenses/LICENSE-2.0
  12.  
  13.    Unless required by applicable law or agreed to in writing,
  14.    software distributed under the License is distributed on an
  15.    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16.     KIND, either express or implied.  See the License for the
  17.    specific language governing permissions and limitations
  18.    under the License.
  19. -->
  20. <html>
  21.  
  22. <head>
  23.     <meta charset="utf-8" />
  24.     <meta name="format-detection" content="telephone=no" />
  25.     <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
  26.     <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
  27.     <link rel="stylesheet" type="text/css" href="css/index.css" />
  28.     <link rel="stylesheet" type="text/css" href="css/jquery.mobile.css" />
  29.     <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
  30.     <script type="text/javascript" charset="utf-8" src="js/jquery.mobile.js"></script>
  31.  
  32.     <title>Hello World</title>
  33. </head>
  34.  
  35. <body>
  36. <div data-role="page" id="page_dashboard">
  37.     <script type="text/javascript" charset="utf-8" src="js/dashboard.js"></script>
  38.  
  39.  
  40.     <div data-role="header">
  41.         <h1>Dashboard</h1>
  42.     </div>
  43.     <!-- /header -->
  44.  
  45.     <div data-role="content">
  46.         <p><a href="#page_login" data-role="button" id="button_login">Login</a>
  47.         </p>
  48.         <p><a href="#" data-role="button" id="button_logout">Logout</a>
  49.         </p>
  50.     </div>
  51.     <!-- /content -->
  52.  
  53. </div>
  54. <!-- /page -->
  55. <div data-role="page" id="page_login">
  56.  
  57.     <script type="text/javascript" charset="utf-8" src="js/login.js"></script>
  58.  
  59.     <div data-role="header">
  60.         <h1>Login</h1>
  61.     </div>
  62.     <!-- /header -->
  63.  
  64.     <div data-role="content" class='content'>
  65.         <div>
  66.             <label for="page_login_name">Username</label>
  67.             <input type="text" id="page_login_name" />
  68.         </div>
  69.         <div>
  70.             <label for="page_login_pass">Password</label>
  71.             <input type="password" id="page_login_pass" />
  72.         </div>
  73.         <fieldset>
  74.             <div>
  75.                 <button type="button" data-theme="b" id="page_login_submit">Login</button>
  76.             </div>
  77.         </fieldset>
  78.     </div>
  79.     <!-- /content -->
  80.  
  81. </div>
  82. <!-- /page -->
  83.  
  84.  
  85. </body>
  86.  
  87. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement