-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaffes.html
101 lines (82 loc) · 3.04 KB
/
staffes.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!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>Maktab</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/style.css">
</head>
<body onload="loaded()" onkeyup="keyUp(event)">
<div class="wrapper">
<section class="section">
<!-- ASIDE -->
<aside class="sidebar">
<h2 class="sidebar__title">Maktab</h2>
<ul>
<li><a href="./index.html">Bosh sahifa</a></li>
<li><a href="./teachers.html">O’qituvchilar</a></li>
<li><a href="./students.html">O’quvchilar</a></li>
<li><a class="active active-dark" href="#">Xodimlar</a></li>
<li><a href="./sciences.html">Fanlar</a></li>
<li><a href="./rooms.html">Xonalar</a></li>
<li><a href="./lessons.html">Dars jadvallari</a></li>
</ul>
</aside>
<!-- ASIDE-END -->
<!-- MAIN-RIGHT -->
<main class="rightside">
<header class="navbar">
<button class="btn" onclick="toggleSidebar()"><i class="fas fa-bars fa-2xl"></i></button>
<div class="darkMode">
<button class="darkBtn">Kun / Tun</button>
</div>
</header>
<section class="content">
<div class="content__title">
<h2 class="title__text">Xodimlar</h2>
<h2 class="selected title__text"></h2>
</div>
<div class="content__table">
<div class="content__table-search">
<div class="search-form">
<input type="search" id="search" name="search" placeholder="Qidirish...">
<button type="submit" onclick="findUser()">Qidiruv</button>
</div>
<button class="delete-all" onclick="deleteAll()">Barchasini o'chirish</button>
</div>
<table class="table" id="table">
<thead>
<tr>
<th>#</th>
<th>Ismi</th>
<th>Familiyasi</th>
<th>Lavozimi</th>
<th>Telefon nomeri</th>
<th>O'chirish</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jurat</td>
<td>Raximbayev</td>
<td>Boshliq</td>
<td>91 429 74 78</td>
<td><button class="trash"><i class="fas fa-trash"></i></button></td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<!-- MAIN-RIGHT-END -->
</section>
</div>
<script src="./js/global.js"></script>
<script src="./js/staffes.js"></script>
</body>
</html>