Skip to content

Instantly share code, notes, and snippets.

@backsrc
Created September 6, 2017 12:48
Show Gist options
  • Save backsrc/d45caa9619617201f8ba819d2115cdf2 to your computer and use it in GitHub Desktop.
Save backsrc/d45caa9619617201f8ba819d2115cdf2 to your computer and use it in GitHub Desktop.
[open] Server Down Page
<!DOCTYPE html>
<html>
<head>
<title>Servers Down</title>
<link href="https://fonts.googleapis.com/css?family=Inconsolata|Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Our servers are currently down</h1>
<p>Our servers have shut down because an unauthorised device was in access of our database,<br> We immediately shut down the server to stop anymore damage possible to the server.<br> <a href="learnmore.html" target="_blank">Learn More!</a></p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Why?</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700i" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Our servers are hacker protected</h1>
<p>We prioritize our customer's data, So when any unauthorized person or individual gets in touch with out database, <br> Our server sent an emergency shut down signal to the main server and immediately shut down the server.</p>
<h1>So, what happens to all my data?</h1>
<p>Your data is completely safe, Nothing has happened to it, We have a backup server which is private, so no hacker can access it, So you are all fine :)</p>
</body>
</html>
body {
font-family: 'Roboto';
background-color: #051411;
text-align: center;
margin-top: 6.5cm;
}
h1 {
color: #42f4d4;
font-weight: 700;
font-size: 49px;
}
p {
margin-top: -0.8cm;
text-align: center;
color: white;
}
a{
font-size: 20px;
color:#42f4d4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment