index.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Информационная система</title>
  5. <meta
  6. http-equiv="Cache-Control"
  7. content="no-cache, no-store, must-revalidate"
  8. />
  9. <meta http-equiv="Pragma" content="no-cache" />
  10. <meta http-equiv="Expires" content="0" />
  11. <meta charset="utf-8" />
  12. <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css" />
  13. <link rel="stylesheet" href="css/index.css" />
  14. <script src="lib/bootstrap/js/bootstrap.min.js"></script>
  15. <meta name="viewport" content="width=device-width, initial-scale=1" />
  16. </head>
  17. <body>
  18. <form class="form-horizontal" action="getinfo.php" method="POST">
  19. <div class="row">
  20. <div
  21. class="col-lg-4 col-lg-offset-4 col-md-8 col-md-offset-2 col-sm-6 col-sm-offset-3 col-xs-12 col-xs-offset-0"
  22. >
  23. <div class="panel panel-primary">
  24. <div class="panel-heading">Личный кабинет</div>
  25. <div class="panel-body">
  26. <div class="alert alert-info" role="alert">
  27. Вводите номер зач. книжки
  28. </div>
  29. <div class="form-group">
  30. <label for="inputCont" class="col-sm-4 control-label"
  31. >Фамилия</label
  32. >
  33. <div class="col-sm-7">
  34. <input
  35. name="c_fam"
  36. type="text"
  37. class="form-control"
  38. id="inputCont"
  39. value=""
  40. placeholder=""
  41. />
  42. </div>
  43. </div>
  44. <div class="form-group">
  45. <label for="inputLek" class="col-sm-4 control-label"
  46. >Номер зач. книжки</label
  47. >
  48. <div class="col-sm-7">
  49. <input
  50. name="tabn"
  51. type="text"
  52. class="form-control"
  53. id="inputLek"
  54. value=""
  55. placeholder=""
  56. />
  57. </div>
  58. </div>
  59. <div class="form-group">
  60. <div class="col-sm-4"></div>
  61. <div class="col-sm-7">
  62. <input
  63. class="btn btn-primary btn-block"
  64. type="submit"
  65. value="Войти"
  66. />
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </form>
  74. </body>
  75. </html>