-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
473 additions
and
136 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
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 |
---|---|---|
@@ -1,47 +1,56 @@ | ||
<!DOCTYPE html> | ||
<!--Aegis Framework | MIT License | http://www.aegisframework.com/ --> | ||
<html lang="en"> | ||
|
||
<head> | ||
|
||
<title>Forbidden</title> | ||
|
||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<style> | ||
body{ | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
width: 100%; | ||
height: 100%; | ||
text-align: center; | ||
color: rgb(84,84,84); | ||
font-family: sans-serif; | ||
width: 50%; | ||
margin: 0 auto; | ||
color: rgb(84, 84, 84); | ||
font-family: -apple-system, BlinkMacSystemFont, | ||
"Segoe UI", "Roboto", "Oxygen", | ||
"Ubuntu", "Cantarell", "Open Sans", "Fira Sans", | ||
"Droid Sans", "Helvetica Neue", sans-serif; | ||
margin: 0; | ||
} | ||
h1{ | ||
font-size: 4em; | ||
|
||
} | ||
h2{ | ||
font-size: 2em; | ||
body > div { | ||
margin: 0 auto; | ||
top: 50%; | ||
left: 50%; | ||
-webkit-transform: translate(-50%, -50%); | ||
-moz-transform: translate(-50%, -50%); | ||
-o-transform: translate(-50%, -50%); | ||
-ms-transform: translate(-50%, -50%); | ||
position: absolute; | ||
max-height: 100%; | ||
} | ||
|
||
div{ | ||
width: 50%; | ||
height: 20em; | ||
background-color: rgb(245,245,245); | ||
display: block; | ||
margin: 0 auto; | ||
border-radius: 0.3em; | ||
h1 { | ||
font-size: 4em; | ||
font-weight: lighter; | ||
} | ||
|
||
h2 { | ||
font-size: 2em; | ||
font-weight: lighter; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<h1>Accessing Forbidden Content</h1> | ||
<h2>Sorry, the content you are trying to access is forbidden.</h2> | ||
|
||
<div> | ||
<h1>Accesing Forbidden Content</h1> | ||
<h2>Sorry, the content you are trying to access is forbidden.</h2> | ||
</div> | ||
</body> | ||
|
||
</html> |
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 |
---|---|---|
@@ -1,47 +1,56 @@ | ||
<!DOCTYPE html> | ||
<!--Aegis Framework | MIT License | http://www.aegisframework.com/ --> | ||
<html lang="en"> | ||
|
||
<head> | ||
|
||
<title>Page not Found</title> | ||
|
||
<title>Page Not Found</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<style> | ||
body{ | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
width: 100%; | ||
height: 100%; | ||
text-align: center; | ||
color: rgb(84,84,84); | ||
font-family: sans-serif; | ||
width: 50%; | ||
margin: 0 auto; | ||
color: rgb(84, 84, 84); | ||
font-family: -apple-system, BlinkMacSystemFont, | ||
"Segoe UI", "Roboto", "Oxygen", | ||
"Ubuntu", "Cantarell", "Open Sans", "Fira Sans", | ||
"Droid Sans", "Helvetica Neue", sans-serif; | ||
margin: 0; | ||
} | ||
h1{ | ||
font-size: 4em; | ||
|
||
} | ||
h2{ | ||
font-size: 2em; | ||
body > div { | ||
margin: 0 auto; | ||
top: 50%; | ||
left: 50%; | ||
-webkit-transform: translate(-50%, -50%); | ||
-moz-transform: translate(-50%, -50%); | ||
-o-transform: translate(-50%, -50%); | ||
-ms-transform: translate(-50%, -50%); | ||
position: absolute; | ||
max-height: 100%; | ||
} | ||
|
||
div{ | ||
width: 50%; | ||
height: 20em; | ||
background-color: rgb(245,245,245); | ||
display: block; | ||
margin: 0 auto; | ||
border-radius: 0.3em; | ||
h1 { | ||
font-size: 4em; | ||
font-weight: lighter; | ||
} | ||
|
||
h2 { | ||
font-size: 2em; | ||
font-weight: lighter; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<h1>Page not Found</h1> | ||
<h2>Sorry, the page you are trying to access does not exist.</h2> | ||
|
||
<div> | ||
<h1>Page Not Found</h1> | ||
<h2>Sorry, the page you are trying to access does not exist.</h2> | ||
</div> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.