-
Notifications
You must be signed in to change notification settings - Fork 84
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
60 changed files
with
70,778 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<html> | ||
<head> | ||
<title>Error 404 | Error</title> | ||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Infant:wght@400;700&display=swap'); | ||
|
||
html, | ||
body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #1f1e1e; | ||
font-family: 'Ysabeau Infant', sans-serif; | ||
overflow: hidden; | ||
display: flex; | ||
text-align: center; | ||
justify-content: center; | ||
color: white; | ||
align-items: center; | ||
background-image: url('/media/index/404.png'); | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.noflex { | ||
display: block; | ||
} | ||
</style> | ||
<link rel="stylesheet" href="/lib/styles/index.css" /> | ||
</head> | ||
<body> | ||
<div class="noflex"> | ||
<h1>404 ERROR</h1> | ||
<p>Whoa! Oh wait, nevermind, this page doesn't exist. Why dontchu explore some of our other options instead of tryna find secret pages?</p> | ||
<a href="/index.html"> | ||
<button class="btn" role="button">Go back home</button> | ||
</a> | ||
<a href="duckos.html"> | ||
<button class="btn" role="button" target="_blank">Check out DuckOS</button> | ||
</a> | ||
<a href="https://discord.gg/MxRvwQjrAa"> | ||
<button class="btn" role="button" target="_blank">Join our Discord Server</button> | ||
</a> | ||
</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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>DuckOS v6</title> | ||
<link rel="icon" type="image/x-icon" href="/media/favicons/default.png"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" rel="stylesheet"> | ||
<link href="/lib/styles/styles.css" rel="stylesheet" type="text/css" /> | ||
<link href="/lib/styles/window.css" rel="stylesheet" type="text/css" /> | ||
<link href="/lib/styles/settings.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<div id="loader"> | ||
<span class="loader"></span> | ||
</div> | ||
<div class="notification-container"> | ||
<div id="notification" class="notification" onclick="executeNotificationFunction()" onmouseover="clearHideTimeout()" onmouseout="setHideTimeout()"> | ||
<div class="close-button" onclick="hideNotification(event)">Close</div> | ||
<div class="notification-title">Notification Title</div> | ||
<div class="notification-message">Notification Content goes here</div> | ||
</div> | ||
</div> | ||
<div id="appstore"> | ||
<h1 align="center" id="title">DuckOS App Store</h1> | ||
<p align="center">These are all just non-functional placeholders for now, apps will be added soon!</p> | ||
<div id="rows"></div> | ||
<p align="center">You have reached the end of App Store!</p> | ||
</div> | ||
<div id="taskbar"> | ||
<div id="appsContainer"> | ||
<div class="appsbox" id="appstoretoggle"> | ||
<img src="/media/icons/launcher.png"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="topbar"> | ||
<div id="togglesettinglist" class="settingmenu"> | ||
<span class="settingmenu-span"> | ||
<i class="fa-solid fa-gear"></i> Settings </span> | ||
</div> | ||
<b> | ||
<span id="time" onclick="toggleTimeFormat()"></span> | ||
</b> | ||
<div class="fullscreencontainer"> | ||
<span id="fullscreen"> | ||
<i class="fa-solid fa-expand"></i> Fullscreen </span> | ||
</div> | ||
</div> | ||
<div id="settingslist"> | ||
<div class="settings-container" id="settingsContainer"> | ||
<h1>Settings</h1> | ||
<hr> | ||
<h3>Background Image</h3> | ||
<div class="background-img"></div> | ||
<div class="custom-upload"> | ||
<label for="custom-input"> | ||
<span class="upload-span">Upload</span> | ||
<input type="file" id="custom-input" class="custom-input" accept="image/*"> | ||
</label> | ||
</div> | ||
<hr> | ||
<h3>Theme</h3> | ||
<p>Light Theme</p> | ||
<label class="switch"> | ||
<input type="checkbox" id="lightmodeSwitch"> | ||
<span class="themeslider"></span> | ||
</label> | ||
</div> | ||
</div> | ||
<script src="/lib/scripts/basic.js"></script> | ||
<script src="/lib/scripts/window.js"></script> | ||
<script src="/lib/scripts/appstore.js"></script> | ||
<script src="/lib/scripts/settings.js"></script> | ||
</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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>Skyhax</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" /> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="/lib/styles/index.css" /> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | ||
</head> | ||
<body> | ||
<div id="loader"> | ||
<div class="lds-heart"> | ||
<div></div> | ||
</div> | ||
</div> | ||
<div class="navbar"> | ||
<div class="logo" onclick="location.reload();"> | ||
<img onclick="location.reload();" class="logoimg animate__animated animate__rollIn animate__delay-3s" src="/media/logo.gif" alt="Logo"> | ||
</div> | ||
<div class="buttons animate__animated animate__zoomIn animate__delay-3s"> | ||
<button class="button" onclick="scrollToSection('.home')">Home</button> | ||
<button class="button" onclick="scrollToSection('.duck')">DuckOS</button> | ||
<button class="button" onclick="scrollToSection('.kasm')">Kasm</button> | ||
<button class="button" onclick="scrollToSection('.contact')">Contact</button> | ||
</div> | ||
</div> | ||
<div class="section home"> | ||
<div class="content"> | ||
<h1 class="animate__animated animate__backInDown animate__delay-3s">Welcome to Skyhax</h1> | ||
<p class="animate__animated animate__backInUp animate__delay-3s">Leading the future of web technology, internet censorship bypassing and UI/UX design.</p> | ||
<p class="animate__animated animate__backInUp animate__delay-3s">"Simplicity prevails in the face of complexity"</p> | ||
</div> | ||
</div> | ||
<div class="section duck animate__animated animate__fadeIn animate__delay-3s"> | ||
<div class="content"> | ||
<h2>DuckOS</h2> | ||
<p>A modern, futuristic looking operating system themed unblocking service with dynamic proxy links & tons of games! With an fake terminal emulator, app store, notes and more!</p> | ||
<img class="duckss" src="/media/index/duckss.png"> | ||
<br> | ||
<br> | ||
<a href="duckos.html"> | ||
<button class="btn" role="button" target="_blank">Boot DuckOS</button> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="section kasm animate__animated animate__fadeIn animate__delay-3s"> | ||
<div class="content"> | ||
<h2>Kasm</h2> | ||
<p>A 100% free of charge web-based cloud computer designed for envading internet censorship. Run Kali Linux, Chrome instance with everything unblocked, DOOM and more right inside your browser!</p> | ||
<img class="duckss" src="/media/index/kasmss.png"> | ||
<br> | ||
<br> | ||
<a href="https://98.51.32.204/" target="_blank"> | ||
<button class="btn" role="button">Go to Kasm</button> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="section contact animate__animated animate__fadeIn animate__delay-3s"> | ||
<div class="content"> | ||
<h2>Contact</h2> | ||
<p>Here are some of our socials you can contact us with</p> | ||
<a href="https://discord.gg/MxRvwQjrAa"> | ||
<button class="btn" role="button" target="_blank">Discord Server</button> | ||
</a> | ||
<a href="https://github.com/GikitSRC/DuckOS"> | ||
<button class="btn" role="button" target="_blank">Github</button> | ||
</a> | ||
<a href="duckos.html"> | ||
<button class="btn" role="button" target="_blank">TikTok</button> | ||
</a> | ||
</div> | ||
</div> | ||
<script> | ||
function scrollToSection(sectionClass) { | ||
const section = document.querySelector(sectionClass); | ||
if (section) { | ||
section.scrollIntoView({ | ||
behavior: 'smooth' | ||
}); | ||
} | ||
} | ||
window.addEventListener('load', function() { | ||
var loader = document.getElementById('loader'); | ||
var content = document.getElementById('content'); | ||
setTimeout(function() { | ||
loader.classList.add('hide'); | ||
loader.style.display = 'none'; | ||
content.style.display = 'block'; | ||
document.body.style.overflow = 'auto'; | ||
}, 2500); | ||
}); | ||
|
||
function setOverflowAuto() { | ||
document.body.style.overflow = 'auto'; | ||
} | ||
window.addEventListener('load', function() { | ||
setTimeout(setOverflowAuto, 2500); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.