-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdmin-Lab1-home.php
More file actions
62 lines (58 loc) · 2.34 KB
/
Admin-Lab1-home.php
File metadata and controls
62 lines (58 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<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">
<title>Admin</title>
<link rel="stylesheet" href="http://localhost:8888/css/main.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<?php
session_start();
if($_SESSION["type"]!=3)
{
$_SESSION['error'] = "[RIGHTS] У вас недостаточно прав для просмотра этой страницы!";
header('Location: '. 'http://localhost:8888/Admin-error.php');
exit();
}
?>
<?php
include "Admin-menu.php";
?>
<header class="header">
<div class="header__wrapper">
<h1 class="header__title" style="color: #000; border-bottom: 1px solid #000000;">
MONITORING
</h1>
</div>
</header>
<main class="section">
<div class="container">
<ul class="professions" id="professions">
<li class="profession">
<a href="http://localhost:8888/admin-prof-page.html">
<img src="http://localhost:8888/img/professions/prof1.png" alt="Profession img" class="profession__img">
<h3 class="profession__title">Software Developer</h3>
</a>
</li>
<li class="profession">
<a href="http://localhost:8888/admin-prof-page.html">
<img src="http://localhost:8888/img/professions/prof1.png" alt="Profession img" class="profession__img">
<h3 class="profession__title">Game Programmer</h3>
</a>
</li>
<li class="profession">
<a href="http://localhost:8888/admin-prof-page.html">
<img src="http://localhost:8888/img/professions/prof1.png" alt="Profession img" class="profession__img">
<h3 class="profession__title">Web Developer</h3>
</a>
</li>
</ul>
</div>
</main>
<script src="http://localhost:8888/js/Admin-Lab1-home.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>