Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <meta name="format-detection" content="telephone=no" />
  6.     <meta name="msapplication-tap-highlight" content="no" />
  7.     <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
  8.     <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" />
  9.     <link rel="stylesheet" type="text/css" href="css/ionic.min.css" />
  10.     <title>Create an Account</title>
  11. </head>
  12. <body>
  13.     <div class="bar bar-header">
  14.         <h1 class="title">Create an Account</h1>
  15.         <a href="login.html" class="button button-clear button-royal">Login</a>
  16.     </div>
  17.     <div class="padding" style="margin-top:75px;">
  18.         <label class="item-input">
  19.             <span class="input-label">Full Name</span>
  20.             <input type="text" placeholder="Sundaravel" id="fullname">
  21.         </label>
  22.         <label class="item-input">
  23.             <span class="input-label">Email</span>
  24.             <input type="email" placeholder="email@domain.com" id="email">
  25.         </label>
  26.         <label class="item-input">
  27.             <span class="input-label">Password</span>
  28.             <input type="password" placeholder="password" id="password">
  29.         </label>
  30.         <label class="item-input">
  31.             <button class="button button-block button-positive" id="signup">Create an Account</button>
  32.         </label>
  33.        
  34.        
  35.     </div>
  36.     <script type="text/javascript" src="cordova.js"></script>
  37.     <script type="text/javascript" src="js/jq.js"></script>
  38.     <script type="text/javascript" src="js/auth.js"></script>
  39. </body>
  40.  
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement