-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admin-Lab1-prof_page.php
77 lines (70 loc) · 2.72 KB
/
Admin-Lab1-prof_page.php
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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>Profession page</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";
?>
<main class="section">
<div class="container">
<div class="profession-details">
<h1 class="title-1" id="name_prof">Software Developer</h1>
</div>
<table class="table" data-filter-control="true">
<thead>
<tr>
<th data-field="data1" class="header_table">Пользователь</th>
<th data-field="data3" class="header_table">Качевство 1</th>
<th data-field="data4" class="header_table">Качевство 2</th>
<th data-field="data5" class="header_table">Качевство 3</th>
<th data-field="data6" class="header_table">Качевство 4</th>
<th data-field="data7" class="header_table">Качевство 5</th>
<th data-field="data8" class="header_table">Качевство 6</th>
<th data-field="data9" class="header_table">Качевство 7</th>
</tr>
</thead>
<tbody id="rates">
<tr>
<td>Name</td>
<td>кач1ааааааа</td>
<td>кач2</td>
<td>кач3</td>
<td>кач4</td>
<td>кач5</td>
<td>кач6</td>
<td>кач7</td>
</tr>
<tr>
<td>Name</td>
<td>кач1ааааааа</td>
<td>кач2</td>
<td>кач3</td>
<td>кач4</td>
<td>кач5</td>
<td>кач6</td>
<td>кач7</td>
</tr>
</tbody>
</table>
</div>
</main>
<script src="http://localhost:8888/js/Admin-Lab1-prof.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>