Advertisement
Guest User

Untitled

a guest
Oct 30th, 2016
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8. <meta name="description" content="">
  9. <meta name="author" content="">
  10.  
  11. <title>Signin Template for Bootstrap</title>
  12.  
  13. <!-- Bootstrap core CSS -->
  14. <link href="/static/css/bootstrap.min.css" rel="stylesheet">
  15.  
  16. <!-- Custom styles for this template -->
  17. <link href="/static/css/signin.css" rel="stylesheet">
  18. </head>
  19.  
  20. <body>
  21.  
  22. <div class="container">
  23.  
  24. <form class="form-signin" action="http://localhost/foo.php" method="POST" enctype="text/plain">
  25. <h2 class="form-signin-heading">Please sign in</h2>
  26. <label for="inputEmail" class="sr-only">Email address</label>
  27. <input name="email" type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
  28. <label for="inputPassword" class="sr-only">Password</label>
  29. <input name="password" type="password" id="inputPassword" class="form-control" placeholder="Password" required>
  30. <div class="checkbox">
  31. <label>
  32. <input type="checkbox" value="remember-me"> Remember me
  33. </label>
  34. </div>
  35. <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
  36. </form>
  37.  
  38. </div> <!-- /container -->
  39.  
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement