Advertisement
Guest User

314

a guest
Dec 23rd, 2014
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 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">
  7. <title>Bootstrap 101 Template</title>
  8.  
  9. <!-- Bootstrap -->
  10. <link href="css/bootstrap.min.css" rel="stylesheet">
  11. <link href="css/registration.css" rel ="stylesheet">
  12.  
  13. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  14. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  15. <!--[if lt IE 9]>
  16. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  17. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  18. <![endif]-->
  19. </head>
  20. <body>
  21. <form class="form-horizontal" action="login.php" method="post">
  22. <fieldset>
  23.  
  24. <!-- Form Name -->
  25.  
  26.  
  27. <!-- Text input-->
  28. <div class="formular">
  29. <div class="form-group" >
  30. <label class="col-md-4 control-label" for="l_username">Benutzername</label>
  31. <div class="col-md-5">
  32. <input id="iu_username" name="l_username" type="text" placeholder="Benutzername" class="form-control input-md" required="">
  33.  
  34. </div>
  35. </div>
  36.  
  37. <!-- Password input-->
  38. <div class="form-group">
  39. <label class="col-md-4 control-label" for="l_password">Passwort</label>
  40. <div class="col-md-5">
  41. <input id="iu_password" name="l_password" type="password" placeholder="Passwort" class="form-control input-md" required="">
  42.  
  43. </div>
  44. </div>
  45.  
  46. <!-- Button -->
  47. <div class="form-group">
  48. <label class="col-md-4 control-label" for="l_button"></label>
  49. <div class="col-md-4">
  50. <button id="iu_button" name="l_button" class="btn btn-success" type="submit">Einloggen</button>
  51. </div>
  52. </div>
  53.  
  54. </fieldset>
  55. </form></div>
  56.  
  57. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  58. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  59. <!-- Include all compiled plugins (below), or include individual files as needed -->
  60. <script src="js/bootstrap.min.js"></script>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement