-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.php
37 lines (33 loc) · 1.7 KB
/
homepage.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
<!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="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<title>Homepage</title>
</head>
<body>
<div class="container">
<img style="height: 25%; width:100%; border-radius: 20px;" src="homepage.png">
<div class="button-group">
<button class="button verification-button" onclick="window.location.href='newrequest.html';" style="background-color: blue;">
<i class="fas fa-file-alt"></i> Verification Request
</button>
<button class="button new-button" onclick="window.location.href='M-1_P-New.html';" style="background-color: rgb(82, 9, 78);">
<i class="fa-solid fa-plus"></i> New Page
</button>
<button class="button cases-button" onclick="window.location.href='complete.html';" style="background-color: rgb(9, 51, 78);">
<i class="fa-solid fa-clipboard-list"></i> Complete File
</button>
<button class="button profile-button" onclick="window.location.href='pending.html';"
style="background-color: rgb(56, 75, 13);">
<i class="fa-solid fa-file"></i> Pending File
</button>
<button class="button profile-button" onclick="window.location.href='M-1_P-1.html';"style="background-color: rgb(71, 6, 6);;">
<i class="fa-solid fa-right-from-bracket"></i> Log Out
</button>
</div>
</div>
</body>
</html>