login.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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">
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <link rel="icon" href="../../favicon.ico">
  10. <title>Signin Template for Bootstrap</title>
  11. <!-- Bootstrap core CSS -->
  12. <link href="styles/bootstrap.min.css" rel="stylesheet">
  13. <!-- Custom styles for this template -->
  14. <link href="styles/signin.css" rel="stylesheet">
  15. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  16. <!--[if lt IE 9]>
  17. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  18. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  19. <![endif]-->
  20. </head>
  21. <body>
  22. <div class="container">
  23. <form action="?action=login" method="POST" class="form-signin">
  24. <h2 class="form-signin-heading">Bitte einloggen</h2>
  25. <label for="inputUsername" class="sr-only">Username</label>
  26. <input type="text" name="username" id="inputUsername" class="form-control" placeholder="Username" required autofocus>
  27. <label for="inputPassword" class="sr-only">Password</label>
  28. <input type="password" name="password" id="inputPassword" class="form-control" placeholder="Password" required>
  29. <!--<div class="checkbox">
  30. <label>
  31. <input type="checkbox" value="remember-me"> Remember me
  32. </label>
  33. </div>-->
  34. <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
  35. </form>
  36. </div> <!-- /container -->
  37. <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  38. <!--<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>-->
  39. </body>
  40. </html>