Created
September 26, 2017 21:13
-
-
Save grand-lotus-iroh/7ebe02618552b55c34d43694e6e2fe66 to your computer and use it in GitHub Desktop.
Reset FTP Password in cPanel
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<meta http-equiv="Cache-control" content="no-cache"> | |
<meta http-equiv="Pragma" content="no-cache"> | |
<meta http-equiv="Expires" content="0"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Account Suspended</title> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> | |
<link rel='stylesheet prefetch' href='http://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css'> | |
<style type="text/css"> | |
* { | |
margin: 0; | |
padding: 0; | |
font-weight: normal; | |
} | |
html, body { | |
height: 100%; | |
background: url(https://i.imgur.com/aPM2TVb.jpg) no-repeat; | |
background-size: cover; | |
color: white; | |
font-family: "Segoe UI Light", "Segoe UI", "Selawik Light", Tahoma, Verdana, Arial, sans-serif; | |
font-size: 100%; | |
} | |
.maintenance { | |
text-transform: uppercase; | |
margin-bottom: 1rem; | |
font-size: 3rem; | |
font-weight: normal; | |
} | |
.container { | |
display: table; | |
margin: 0 auto; | |
max-width: 1024px; | |
width: 100%; | |
height: 100%; | |
-ms-flex-line-pack: center; | |
align-content: center; | |
position: relative; | |
box-sizing: border-box; | |
} | |
.container .what-is-up { | |
position: absolute; | |
width: 100%; | |
top: 50%; | |
-webkit-transform: translateY(-50%); | |
transform: translateY(-50%); | |
display: block; | |
vertical-align: middle; | |
text-align: center; | |
box-sizing: border-box; | |
} | |
.container .what-is-up .spinny-cogs { | |
display: block; | |
margin-bottom: 2rem; | |
} | |
@-webkit-keyframes fa-spin-one { | |
0% { | |
-webkit-transform: translateY(-2rem) rotate(0deg); | |
transform: translateY(-2rem) rotate(0deg); | |
} | |
100% { | |
-webkit-transform: translateY(-2rem) rotate(-359deg); | |
transform: translateY(-2rem) rotate-(359deg); | |
} | |
} | |
@keyframes fa-spin-one { | |
0% { | |
-webkit-transform: translateY(-2rem) rotate(0deg); | |
transform: translateY(-2rem) rotate(0deg); | |
} | |
100% { | |
-webkit-transform: translateY(-2rem) rotate(-359deg); | |
transform: translateY(-2rem) rotate-(359deg); | |
} | |
} | |
.fa-spin-one, .container .what-is-up .spinny-cogs .fa:nth-of-type(1) { | |
-webkit-animation: fa-spin-one 1s infinite linear; | |
animation: fa-spin-one 1s infinite linear; | |
} | |
@-webkit-keyframes fa-spin-two { | |
0% { | |
-webkit-transform: translateY(-0.5rem) translateY(1rem) rotate(0deg); | |
transform: translateY(-0.5rem) translateY(1rem) rotate(0deg); | |
} | |
100% { | |
-webkit-transform: translateY(-0.5rem) translateY(1rem) rotate(-359deg); | |
transform: translateY(-0.5rem) translateY(1rem) rotate(-359deg); | |
} | |
} | |
@keyframes fa-spin-two { | |
0% { | |
-webkit-transform: translateY(-0.5rem) translateY(1rem) rotate(0deg); | |
transform: translateY(-0.5rem) translateY(1rem) rotate(0deg); | |
} | |
100% { | |
-webkit-transform: translateY(-0.5rem) translateY(1rem) rotate(-359deg); | |
transform: translateY(-0.5rem) translateY(1rem) rotate(-359deg); | |
} | |
} | |
.fa-spin-two, .container .what-is-up .spinny-cogs .fa:nth-of-type(3) { | |
-webkit-animation: fa-spin-two 2s infinite linear; | |
animation: fa-spin-two 2s infinite linear; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="what-is-up"> | |
<div class="spinny-cogs"> | |
<i aria-hidden="true" class="fa fa-cog"></i> <i aria-hidden="true" class="fa fa-5x fa-cog fa-spin"></i> <i aria-hidden="true" class="fa fa-3x fa-cog"></i> | |
</div> | |
<h1 class="maintenance">Account Suspended</h1> | |
<h2>Just contact hosting provider for more information.</h2> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment