-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
128 lines (118 loc) · 4.6 KB
/
404.php
File metadata and controls
128 lines (118 loc) · 4.6 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | FocusFlow</title>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="icon" href="img/SMALL_CLOCK_ICON.ico">
<link rel="stylesheet" href="index.css">
<style>
/* Center the main content vertically and horizontally */
main {
display: flex;
justify-content: center;
align-items: center;
min-height: 60vh; /* Adjust based on header/footer sizes */
text-align: center;
padding: 20px;
}
/* Optional: Style for the error message container */
.error-page {
max-width: 600px;
margin: auto;
}
</style>
</head>
<body>
<header>
<div class="HEADER__LEFT">
<a href="Homepage.php">
<h1 class="HEADER__TITLE CLICKABLE">
F<span class="material-symbols-outlined HEADER__ICON">
schedule
</span>cusFlow
</h1>
</a>
<nav>
<ul class="HEADER__LIST">
<li class="HEADER__DROPDOWN_MENU CLICKABLE" id="FEATURES">
Features
<span class="material-symbols-outlined ARROW">
arrow_drop_down
</span>
</li>
<div class="HEADER__DROPDOWN" id="FEATURES">
<a class="DROPDOWN__ITEM" href="Features.php#pomodoro">Pomodoro Timer</a>
<a class="DROPDOWN__ITEM" href="Features.php#task">Task Management</a>
<a class="DROPDOWN__ITEM" href="Features.php#collaboration">Team Features</a>
<a class="DROPDOWN__ITEM" href="Features.php#analytic">Analytics</a>
</div>
<li class="HEADER__DROPDOWN_MENU CLICKABLE" id="PLAN">
Plans & Pricing
<span class="material-symbols-outlined ARROW">
arrow_drop_down
</span>
</li>
<div class="HEADER__DROPDOWN" id="PLAN">
<a class="DROPDOWN__ITEM" href="Plans.php">View Plan</a>
</div>
<li class="HEADER__DROPDOWN_MENU CLICKABLE" id="CONTACT">
Contact Us
<span class="material-symbols-outlined ARROW">
arrow_drop_down
</span>
</li>
<div class="HEADER__DROPDOWN" id="CONTACT">
<a class="DROPDOWN__ITEM" href="">Customer Service</a>
<a class="DROPDOWN__ITEM" href="">Help Center</a>
<a class="DROPDOWN__ITEM" href="">Social Media Links</a>
</div>
</ul>
</nav>
</div>
<div class="HEADER__SIGNUP CTA">
SIGN UP
</div>
</header>
<main>
<section class="error-page">
<h2>404 - Page Not Found</h2>
<p>Sorry, the page you are looking for doesn't exist.</p>
<p><a href="Homepage.php">Return to Homepage</a></p>
</section>
</main>
<footer class="FOOTER">
<div class="FOOTER__COMPANY">
<h3>F<span class="material-symbols-outlined FOOTER__TITLE_ICON">
schedule
</span>cusFlow</h3>
</div>
<div class="FOOTER__LINK">
<h4 class="FOOTER__LINK__TITLE">Contact</h4>
<ul>
<li><a href="Homepage.php#benefit">Our Service</a></li>
<li><a href="">Get Help</a></li>
</ul>
</div>
<div>
<h4 class="FOOTER__LINK__TITLE">About Us</h4>
<ul>
<li>
<address>Lot 4220 Persimpangan Jalan Batu Arang, Lebuh Raya Plus, Rawang</address>
</li>
<li>Call Us: <a href="tel:+600361387175">+60 (0)3 6138-7175</a></li>
</ul>
</div>
</footer>
<div class="BACK_TO_TOP CLICKABLE">
<a href="#welcome">
<span class="material-symbols-outlined">
stat_3
</span>
</a>
</div>
<script src="index.js"></script>
</body>
</html>