-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignout.html
41 lines (30 loc) · 1.26 KB
/
signout.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signed Out</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>You have been signed out</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='contact_guestview.html'">Contact Us</button>
</nav>
<div class="content">
<p>Sign out successful, it is now safe to close your browser.</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>