Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <title>Create Account</title>
  5.     <meta charset="utf-8">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1">
  8.     <meta name="description" content="">
  9.     <meta name="author" content="">
  10.     <link rel="icon" href=favicon.ico">
  11.    
  12.     <!-- Bootstrap core CSS -->
  13.     <link href="css/bootstrap.min.css" rel="stylesheet">
  14.  
  15.     <!-- Custom styles for this template -->
  16.     <link href="signin.css" rel="stylesheet">
  17.  
  18.     <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
  19.     <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
  20.     <script src="../../assets/js/ie-emulation-modes-warning.js"></script><style type="text/css"></style><style type="text/css"></style>
  21.  
  22.     <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  23.     <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
  24.  
  25.     <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
  26.     <!--[if lt IE 9]>
  27.      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  28.      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  29.    <![endif]-->
  30.    
  31.   </head>
  32.   <body>
  33.    
  34.    
  35.     <form action="createAccount.php" class="form-signin" style="text-align:center" method="post">
  36.         <h2 class="form-signin-heading">Create Account</h2>    
  37.        
  38.        
  39.         <input name="username" class="form-control" type="text" required="" placeholder="Username...">
  40.         <input name="password" class="form-control" type="password" required="" placeholder="Password...">
  41.         <br>
  42.         <input name="email" class="form-control" type="text" required="" placeholder="Email...">
  43.        
  44.         <button class="btn btn-lg btn-primary btn-block" type="submit">Register</button>
  45.         <br>
  46.         <a href="admin.php">Go Back...</a>
  47.     </form>
  48.    
  49.    
  50.   </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement