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

64 lines
No EOL
3.4 KiB
PHP
Raw Permalink 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';
include '../code/users_code.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>
<script src="../code/js_code.js"></script>
<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 class="active"><a href="#">Пользователи</a></li>
<li><a href="index.php">На главную</a></li>
</ul>
</div>
<div id="masthead">
<h2>Пользователи</h2>
<h3>Поиск информации о пользователях, возможность сделать пользователя админом</h3>
</div>
<div id="blue-bar">
</div>
<div id="main">
<div id='content'>
<h2>Поиск пользователей</h2>
<div class='txt'>
<form name='user_find' method='get' action='users.php'>
Логин: <input class='filter' name='user_login' type='text' value='<?= $data[0] ?>' /></br></br>
Номер телефона: <input class='filter' name='user_phone' type='text' value='<?= $data[1] ?>' /></br></br>
Эл. почта: <input class='filter' name='user_email' type='text' value='<?= $data[2] ?>' /></br></br>
Админ: <select class='filter' name='user_admin'>
<option value='-1'>Все</option>
<option value='0'>Нет</option>
<option value='1'>Да</option>
</select></br></br>
<input class='btn' name='show_users' type='submit' value='Показать пользователей'/></br></br>
</form>
</div>
<?php showUsers($con); ?>
</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>