-
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
1 changed file
with
49 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,53 @@ | ||
<!---[ MIWMOW ]---> | ||
<!DOCTYPE html> | ||
<html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>Redirecting...</title> | ||
<style> | ||
body { | ||
background-color: #22272e; | ||
color: white; /* Adding white text color for better readability */ | ||
font-family: Arial, sans-serif; /* Adding a generic font-family */ | ||
} | ||
a { | ||
color: white; /* Ensuring links are visible in white color */ | ||
} | ||
</style> | ||
<script type="text/javascript"> | ||
window.location.replace("access-key"); | ||
</script> | ||
</head> | ||
<body> | ||
<p>If you are not redirected automatically, <a href="access-key">click here</a>.</p> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>✿ Skyblock Seniors</title> | ||
<style> | ||
body { | ||
background-color: #22272e; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
|
||
img { | ||
max-width: 80%; | ||
margin-top: -500px; | ||
margin-top: -200px;/* Move the image up by 50px */ | ||
} | ||
|
||
button { | ||
margin-top: 20px; /* Add margin to separate button from image */ | ||
padding: 15px 30px; | ||
font-size: 18px; | ||
background-color: #515c6b; | ||
color: #ffffff; | ||
border: 1px solid #353d47; | ||
cursor: pointer; | ||
border-radius: 10px; /* Rounded corners */ | ||
transition: background-color 0.3s; /* Smooth transition effect */ | ||
} | ||
|
||
button:hover { | ||
background-color: #93a4ba; | ||
} | ||
</style> | ||
|
||
<button onclick="redirectToPage()">Enter</button> | ||
|
||
<script> | ||
function redirectToPage() { | ||
// Redirect to the specified URL | ||
window.location.href = 'https://skyblockseniors.com/access-key'; | ||
} | ||
</script> | ||
</body> | ||
|
||
</html> |