-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added logout page in configuration #542
- Loading branch information
Matthew Letter
committed
Dec 9, 2015
1 parent
c236e69
commit 83aef3e
Showing
2 changed files
with
58 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<title>401</title> | ||
|
||
<style type="text/css" media="screen"> | ||
html { | ||
height: 100%%; | ||
} | ||
|
||
body { | ||
height: 100%%; | ||
background-color: #F2F2F2; | ||
background-repeat: no-repeat; | ||
background-position: 50%% 15%%; | ||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; | ||
} | ||
|
||
.not-found { | ||
font-size: 74px; | ||
font-weight: bold; | ||
text-align: center; | ||
margin-top: 28%%; | ||
} | ||
|
||
.return-home { | ||
text-align: center; | ||
margin-top: 1%%; | ||
} | ||
|
||
.return-home a { | ||
font-weight: bold; | ||
color: black; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="not-found"> | ||
You Are Logged Out | ||
</div> | ||
<div class="return-home"> | ||
<a href="/">Slycat Homepage</a> | ||
</div> | ||
</body> | ||
</html> |