login.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="">
  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.0, maximum-scale=1.0, user-scalable=0">
  7. <title>Мониторинг</title>
  8. <link href="main.css" rel="stylesheet">
  9. <script type="text/javascript" src="role.js"></script>
  10. </head>
  11. <body>
  12. <div class="navbar navbar-default navbar-fixed-top">
  13. <div class="navbar-header">
  14. <div><a href="#" class="logo"></a></div>
  15. </div>
  16. </div>
  17. <div class="wrapper" id="content">
  18. <!--START-->
  19. <h1>Авторизация</h1>
  20. <div class="panel panel-default">
  21. <div class="panel-body">
  22. <form action="login.cgi" method="post" class="login-form form-inline">
  23. <label for="login">Логин:&nbsp;</label>
  24. <input type="text" class="form-control" name="login" id="login" maxlength="16" style="margin-right: 10px;">
  25. <label for="pass">Пароль:&nbsp;</label>
  26. <input type="password" class="form-control" name="password" id="pass" maxlength="16">
  27. <input type="submit" class="btn btn-primary" value="Войти">
  28. </form>
  29. </div>
  30. </div>
  31. <!--END-->
  32. </div>
  33. </body>
  34. </html>