-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrorpage.html
42 lines (31 loc) · 1.25 KB
/
errorpage.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error</title>
<link href="reset.css" rel="stylesheet">
<link href="css/stylesdash.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="content_main_container">
<div class="content_sub_container">
<div class="banner_container">
<p class="grt_logo_container"><img class="grt_logo_image" src="images/grt_logo.png"></p>
<p class="banner_title"><b>The Page Was Not Found</b></p>
</div>
<nav class="navbar">
<button class="navbar_button" onclick="window.location.href='index.html'">Sign In</button>
<button class="navbar_button" onclick="window.location.href='signup.html'">Sign Up</button>
<button class="navbar_button" onclick="window.location.href='contact_guestview.html'">Contact Us</button>
</nav>
<div class="content">
<p><b>Sorry, the page you have requested was not found. Please sign in/ sign up if you wish to access our services.</b></p>
</div>
<div class="footer">
<p class="footer_text">All information used herein is property of Grand River Transit, Waterloo ON.</p>
</div>
</div>
</div>
</body>
</html>