You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
2.0 KiB

  1. <?php
  2. session_start();
  3. header('Content-Type: text/html; charset=UTF-8');
  4. $db = include("config.php");
  5. ?>
  6. <html>
  7. <head>
  8. <meta charset="utf-8">
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <title>FutureBuilding Shop - Панель управления</title>
  11. <script src="https://code.jquery.com/jquery-3.5.0.min.js"></script>
  12. <script src="js/bootstrap.js"></script>
  13. <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
  14. <link rel="stylesheet" type="text/css" href="css/style.css">
  15. </head>
  16. <body>
  17. <nav class="navbar fixed-top navbar-light bg-light navbar-expand border">
  18. <a class="navbar-brand" href="worker.php">Admin</a>
  19. <ul class="navbar-nav">
  20. <li class="nav-item dropdown">
  21. <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  22. Меню
  23. </a>
  24. <div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
  25. <a class="nav-link" href="view.php">Просмотр заказов</a>
  26. <a class="nav-link" href="add-item.php">Добавить товар в базу данных</a>
  27. <a class="nav-link" href="cons.php">Заявки на перезвон</a>
  28. </div>
  29. </li>
  30. </ul>
  31. </nav>
  32. <div class="container">
  33. <h2>Панель управления компанией</h2>
  34. <p>Здесь работники могут управлять базой данных товаров, смотреть заказы и заявки на перезвон.</p>
  35. <p>Навигация по панели управления находится выше.</p>
  36. <p>Удачной работы!</p>
  37. </div>
  38. <footer class="page-footer font-small blue border">
  39. <div class="footer-copyright text-center py-3">
  40. ©FutureBuilding.
  41. </div>
  42. </footer>
  43. </body>
  44. </html>