1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Информационная система</title>
- <meta
- http-equiv="Cache-Control"
- content="no-cache, no-store, must-revalidate"
- />
- <meta http-equiv="Pragma" content="no-cache" />
- <meta http-equiv="Expires" content="0" />
- <meta charset="utf-8" />
- <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css" />
- <link rel="stylesheet" href="css/index.css" />
- <script src="lib/bootstrap/js/bootstrap.min.js"></script>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- </head>
- <body>
- <form class="form-horizontal" action="getinfo.php" method="POST">
- <div class="row">
- <div
- 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"
- >
- <div class="panel panel-primary">
- <div class="panel-heading">Личный кабинет</div>
- <div class="panel-body">
- <div class="alert alert-info" role="alert">
- Вводите номер зач. книжки
- </div>
- <div class="form-group">
- <label for="inputCont" class="col-sm-4 control-label"
- >Фамилия</label
- >
- <div class="col-sm-7">
- <input
- name="c_fam"
- type="text"
- class="form-control"
- id="inputCont"
- value=""
- placeholder=""
- />
- </div>
- </div>
- <div class="form-group">
- <label for="inputLek" class="col-sm-4 control-label"
- >Номер зач. книжки</label
- >
- <div class="col-sm-7">
- <input
- name="tabn"
- type="text"
- class="form-control"
- id="inputLek"
- value=""
- placeholder=""
- />
- </div>
- </div>
- <div class="form-group">
- <div class="col-sm-4"></div>
- <div class="col-sm-7">
- <input
- class="btn btn-primary btn-block"
- type="submit"
- value="Войти"
- />
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|