-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
37 lines (36 loc) · 1.53 KB
/
dashboard.html
File metadata and controls
37 lines (36 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="dashboard.css">
<title>Council Database System</title>
</head>
<body>
<div class="container">
<div class="header">
<img src="./images/pque logo.png" class="logo" style="width: 100px; height: auto;">
<div class="header-text">
<span class="republic">Republic of the Philippines</span>
<hr class="header-line">
<h1 class="city-name">City Government of Parañaque</h1>
</div>
</div>
<div class="side-nav">
<a href="#home" class="user-icon"><img src="./images/user-icon.png">John Marikit</a>
<br><br><br>
<div class="nav-links">
<a href="#home" class="icons" title="Dashboard"><img class="active" src="./images/dash-icon.png">Dashboard</a>
<br>
<a href="#home" class="icons" title="User Register"><img src="./images/forms-icon.png">User Register</a>
<br>
<a href="#home" class="icons" title="Requests"><img src="./images/request-icon.png">Request Form</a>
<br>
<a href="#home" class="icons" title="Inventory"><img src="./images/inventory.png">Inventory</a>
<br>
<a href="#home" class="logout" title="Logout"><img src="./images/logout.png">Log out</a>
</div>
</div>
</div>
</body>
</html>