1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
- <title>Мониторинг</title>
- <link href="main.css" rel="stylesheet">
- <script type="text/javascript" src="role.js"></script>
- </head>
- <body>
- <div class="navbar navbar-default navbar-fixed-top">
- <div class="navbar-header">
- <div><a href="#" class="logo"></a></div>
- </div>
- </div>
- <div class="wrapper" id="content">
- <!--START-->
- <h1>Авторизация</h1>
- <div class="panel panel-default">
- <div class="panel-body">
- <form action="login.cgi" method="post" class="login-form form-inline">
- <label for="login">Логин: </label>
- <input type="text" class="form-control" name="login" id="login" maxlength="16" style="margin-right: 10px;">
- <label for="pass">Пароль: </label>
- <input type="password" class="form-control" name="password" id="pass" maxlength="16">
- <input type="submit" class="btn btn-primary" value="Войти">
- </form>
- </div>
- </div>
- <!--END-->
- </div>
- </body>
- </html>
|