NRPC/nrpc_site/admin/index.php
2021-06-28 01:45:20 +03:00

51 lines
No EOL
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
include '../config.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php if (isset($_COOKIE['is_admin'])) { ?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Админ - главная</title>
<link href="../style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<div id="header">
<ul id="nav">
<li><a href="../index.php">Вернуться на сайт</a></li>
<li><a href="parts.php">Товары</a></li>
<li><a href="orders.php">Заказы</a></li>
<li><a href="users.php">Пользователи</a></li>
<li><a href="shops.php">Магазины и поставщики</a></li>
<li class="active"><a href="index.php">На главную</a></li>
</ul>
</div>
<div id="masthead">
<h2>Администраторская панель</h2>
</div>
<div id="blue-bar">
</div>
<div id="main">
<div id='content'>
<h1>Вы попали в администраторску панель</h1>
<h2>Данная панель предназначена для управления базой данных через сайт</h2>
<h3>Выберите один из разделов в верхнем правом углу страницы, чтобы приступить к администрированию</h3>
</div>
</div>
<div id="footer">
<h1>Контакты</h1>
<h2>Связаться с нами можно по телефону: +7 (997) 190-55-05</h2>
<h2>Наш офис находится по адресу: ул. Амбаторный, д. 134</h2>
<h3><a href="https://vk.com/id369980463">Разработчик сайта</a></h3>
</div>
</div>
</body>
<?php } else { ?>
<h2>В доступе отказано</br>
<a href="../index.php">На главную</a>
</h2>
<?php } ?>
</html>