-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloggedout.php
More file actions
22 lines (19 loc) · 923 Bytes
/
loggedout.php
File metadata and controls
22 lines (19 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TimeKeeper - Logged Out</title>
</head>
<body>
<div style="width: 30%; height:200px; background-color:#E66C37; margin: auto; margin-top:15%; border-radius:20px; box-shadow: 0 0px 20px 0 rgba(0,0,0,0.4); display:flex; flex-direction:column;" class="card_menu">
<h1 style="font-size:2vw;">You have been logged out.</h1>
<a href="index.php">
<i style="text-align:center;margin-left:27%; margin-top:-20px; border-radius: 20px; padding:10px;" class="fas fa-home">
<h3 style="text-decoration:underline; text-align:center; color:white; margin-top:10px;">Return to home.</h3>
</i></a>
</div>
</body>
</html>