-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
63 lines (59 loc) · 2.18 KB
/
admin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin dashbord</title>
<link rel="stylesheet" href="./Css/admin.css">
</head>
<body>
<nav>
<li><a href="#" onclick="show()">User</a></li>
<li><a href="./news.html">News</a></li>
<li><a href="#" onclick="showmessage()">Message</a></li>
<li><a href="./SiNews.html">Comment</a></li>
<li><a href="./cate.html">Category</a></li>
</nav>
<div class="image">
<div class="logo">
<h1>Good News</h1>
<img src="../image/news.png" alt="">
</div>
<h1>THIS IS<a href="#" style="color:rgb(47, 179, 255)"> MY ADMIN DASHBOARD</a></h1>
</div>
<div class="activity">
<div>
<form action="" class="updata">
<h2 id="role">Update the role of users</h2>
<label for="update">update</label>
<input type="update" name="update" id="update">
<div class="but">
<button type="submit">update</button>
</div>
</form>
</div>
<div class="spinner"></div>
<div class="user">
<h2 class="u">Account of all users</h2>
<table border="2px" class="getall-user">
<tr>
<th>NO</th>
<th>FirstName</th>
<th>LastName</th>
<th>Email</th>
<th>Password</th>
<th>Role</th>
<th>PostedAt</th>
<th colspan="2">action</th>
</tr>
<tr></tr>
</table>
</div>
<h2 id="ok">All message sent by our friend</h2>
<div class="message">
</div>
<script src="../Js/index.js"></script>
<script src="../Js/getalluser.js"></script>
<script src="../Js/Get message.js"></script>
</body>
</html>