-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEdit_Access_control.html
More file actions
47 lines (43 loc) · 1.68 KB
/
Copy pathEdit_Access_control.html
File metadata and controls
47 lines (43 loc) · 1.68 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
<!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>Access Control Dashboard</title>
<link rel="icon" type="image/x-icon" href="">
<link rel="stylesheet" href="Edit_registry_style.css">
</head>
<body>
<h2 class="title">Edit Access Control</h2>
<form action = "access_control.php" method="POST" >
<div>
<a href="Dean_dashboard.html" class = "action-button">Dean</a>
<a href="Teacher_dashboard.html" class = "action-button">Teacher</a>
<a href="Presec_dashboard.html" class = "action-button">Prefect and Security</a>
</div>
</form>
</body>
<header>
<div class = "logo">
<img src="logo-.png" alt="school-logo">
</div>
<nav class="navbar">
<ul>
<li><a href="Principal_dashboard.html" target="_self">Home</a>
<li><a href="#">Features</a>
<ul>
<li>
<a href="Edit_registry_principal.html">Edit/Remove student</a>
<a href="View_attendance_principal.html">View attendance history</a>
<a href="generate_report.html">Generate Monthly Report</a>
</li>
</ul>
</li>
</ul>
<form action = "logout.php" method = "POST" class = "logout-form">
<button type = "submit" class = "logout-button">Logout</button>
</form>
</nav>
</header>
</html>