mirror of
https://github.com/ReviveMii/website
synced 2025-09-02 19:41:05 +02:00
test
This commit is contained in:
parent
cda9669dee
commit
220f89fc55
33
404.html
Normal file
33
404.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>ReviveMii - 404</title>
|
||||
<style>
|
||||
body {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
background-color: #f8f8f8;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<img src="/4error.jpg">
|
||||
<br>
|
||||
<a href="/">Home</a>
|
||||
<p style="color: grey">TheErrorExe & ReviveMii Project 2024</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
BIN
4error.jpg
Normal file
BIN
4error.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
BIN
IMG_0224.JPG
Normal file
BIN
IMG_0224.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
64
about.html
Normal file
64
about.html
Normal file
@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>About Us | ReviveMii</title>
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="css/1.css">
|
||||
<meta name="description" content="About Page for the ReviveMii Project.">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="logo-container">
|
||||
<a href="index.html" class="logo" style="text-decoration: none">
|
||||
<img src="favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
||||
<span>ReviveMii</span>
|
||||
</a>
|
||||
</div> <nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="projects.html">Projects</a>
|
||||
<a href="about.html">About</a>
|
||||
</nav>
|
||||
</header>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
|
||||
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
|
||||
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
if (!localStorage.getItem('cookiesAccepted')) {
|
||||
document.getElementById('cookiePopup').style.display = 'block';
|
||||
}
|
||||
|
||||
function acceptCookies() {
|
||||
localStorage.setItem('cookiesAccepted', 'true');
|
||||
document.getElementById('cookiePopup').style.display = 'none';
|
||||
}
|
||||
</script>
|
||||
<section class="about">
|
||||
<div class="container">
|
||||
<h1>About ReviveMii</h1>
|
||||
<p>ReviveMii is a Nintendo Revival Project</p>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<a href="/projects.html" class="cta">Projects and Services</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>© 2024 ReviveMii. All Rights Reserved.</p>
|
||||
<p><a href="/index.html#end">More Links in Home Footer</a><p>
|
||||
<p><a href="contact.html">Contact Us</a></p>
|
||||
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
||||
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
||||
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
64
assets/css/styles.css
Normal file
64
assets/css/styles.css
Normal file
@ -0,0 +1,64 @@
|
||||
/* Basic Reset */
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
header {
|
||||
background: #333;
|
||||
color: #fff;
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
header nav ul {
|
||||
list-style: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
header nav ul li {
|
||||
display: inline;
|
||||
margin: 0 15px;
|
||||
}
|
||||
|
||||
header nav ul li a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: url('../images/hero-bg.jpg') no-repeat center center/cover;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding: 3rem 0;
|
||||
}
|
||||
|
||||
.hero .button {
|
||||
background: #007BFF;
|
||||
color: #fff;
|
||||
padding: 0.5rem 1rem;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.project-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 20px;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.project-card {
|
||||
background: #f4f4f4;
|
||||
padding: 1rem;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
background: #333;
|
||||
color: #fff;
|
||||
padding: 1rem 0;
|
||||
margin-top: 2rem;
|
||||
}
|
4
assets/status/services.json
Normal file
4
assets/status/services.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"Website": "https://revivemii.fr.to/",
|
||||
"ReviveMii Image Share": "https://revivemii.fr.to:25580/?u=http://revivemii.fr.to:25581/"
|
||||
}
|
3
contact.html
Normal file
3
contact.html
Normal file
@ -0,0 +1,3 @@
|
||||
<script>
|
||||
window.location.href = "mailto:theerrorexe@gmail.com"
|
||||
</script>
|
60
cookies.html
Normal file
60
cookies.html
Normal file
@ -0,0 +1,60 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cookie and LocalStorage Manager</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 20px;
|
||||
}
|
||||
.storage-list {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.storage-item {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
button {
|
||||
margin-left: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Cookie and LocalStorage Manager</h1>
|
||||
<p>Click the buttons below to delete specific cookies or localStorage items:</p>
|
||||
|
||||
<div class="storage-list">
|
||||
<div class="storage-item">
|
||||
<button onclick="deleteLocalStorageItem('cookiesAccepted')">Delete 'cookiesAccepted' from localStorage</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="storage-list">
|
||||
<div class="storage-item">
|
||||
<button onclick="deleteCookie('allowAccessWii')">Delete 'allowAccessWii' cookie</button>
|
||||
</div>
|
||||
<div class="storage-item">
|
||||
<button onclick="deleteCookie('allowAccess3DS')">Delete 'allowAccess3DS' cookie</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function deleteLocalStorageItem(itemName) {
|
||||
if (localStorage.getItem(itemName)) {
|
||||
localStorage.removeItem(itemName);
|
||||
alert(`The item '${itemName}' has been deleted from localStorage, please reload the site with the cookie!`);
|
||||
} else {
|
||||
alert(`The item '${itemName}' does not exist in localStorage.`);
|
||||
}
|
||||
}
|
||||
|
||||
function deleteCookie(cookieName) {
|
||||
document.cookie = `${cookieName}=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/`;
|
||||
alert(`The cookie '${cookieName}' has been deleted! Please reload the Site with the Cookie`);
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
280
css/1.css
Normal file
280
css/1.css
Normal file
@ -0,0 +1,280 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Arial', sans-serif;
|
||||
background-color: #121212;
|
||||
color: #ffffff;
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
header {
|
||||
background: #1e1e1e;
|
||||
padding: 20px 40px;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
header .logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
header .logo-img {
|
||||
width: 25px;
|
||||
height: auto;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
header .logo span {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #00c2ff;
|
||||
}
|
||||
|
||||
header nav {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
header nav a {
|
||||
color: #ffffff;
|
||||
font-size: 1rem;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
header nav a:hover {
|
||||
color: #00c2ff;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: linear-gradient(145deg, #1c1c1c, #121212);
|
||||
color: white;
|
||||
padding: 80px 20px;
|
||||
text-align: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.hero .container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.cta {
|
||||
padding: 10px 30px;
|
||||
font-size: 1rem;
|
||||
color: #ffffff;
|
||||
background-color: #00c2ff;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.cta:hover {
|
||||
background-color: #0094cc;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 60px 20px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
color: #ffffff;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 20px;
|
||||
color: #b0b0b0;
|
||||
}
|
||||
|
||||
.projects-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 30px;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.project-card {
|
||||
background: #1f1f1f;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
width: 30%;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.project-card:hover {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
|
||||
.project-card img {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.card-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.card-content h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-content p {
|
||||
font-size: 1rem;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.card-content .btn {
|
||||
padding: 10px 20px;
|
||||
background-color: #00c2ff;
|
||||
color: #ffffff;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
margin-top: 15px;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.card-content .btn:hover {
|
||||
background-color: #0094cc;
|
||||
}
|
||||
|
||||
.about {
|
||||
background: #1f1f1f;
|
||||
padding: 60px 20px;
|
||||
text-align: center;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.about p {
|
||||
color: #b0b0b0;
|
||||
font-size: 1.1rem;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: #1e1e1e;
|
||||
padding: 40px 20px;
|
||||
text-align: center;
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
footer p {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #00c2ff;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
color: #0094cc;
|
||||
}
|
||||
|
||||
form {
|
||||
background-color: #1f1f1f;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
form input, form textarea {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin-bottom: 15px;
|
||||
background-color: #2c2c2c;
|
||||
color: #ffffff;
|
||||
border: 1px solid #444;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
form button {
|
||||
padding: 10px 20px;
|
||||
background-color: #00c2ff;
|
||||
color: #ffffff;
|
||||
border-radius: 5px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
form button:hover {
|
||||
background-color: #0094cc;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #00c2ff;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #0094cc;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
header .logo-container {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.projects-list {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.project-card {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cta {
|
||||
font-size: 1.2rem;
|
||||
padding: 12px 40px;
|
||||
}
|
||||
}
|
4
discord-redirect.html
Normal file
4
discord-redirect.html
Normal file
@ -0,0 +1,4 @@
|
||||
<script>
|
||||
window.location.href = "https://discord.gg/yHva2ncjyx"
|
||||
</script>
|
||||
|
53
dl/sitemap.xml
Normal file
53
dl/sitemap.xml
Normal file
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/</loc>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>1.0</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/contact.html</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/blogs.html</loc>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/projects.html</loc>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>0.9</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/freedns.html</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.2</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/revivetube</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>1.0</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/status</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/imageshare</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/feedback.html</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://revivemii.errexe.xyz/about.html</loc>
|
||||
<changefreq>monthly</changefreq>
|
||||
<priority>0.8</priority>
|
||||
</url>
|
||||
</urlset>
|
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 61 KiB |
BIN
imageshare.jpg
Normal file
BIN
imageshare.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 100 KiB |
93
imageshare/index.html
Normal file
93
imageshare/index.html
Normal file
@ -0,0 +1,93 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>ReviveMii Image Share | ReviveMii</title>
|
||||
<link rel="stylesheet" href="/css/1.css">
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<meta name="description" content="Use the Nintendo Image Share again!">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="logo-container">
|
||||
<a href="index.html" class="logo" style="text-decoration: none">
|
||||
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
||||
<span>ReviveMii</span>
|
||||
</a>
|
||||
</div> <nav>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/projects.html">Projects</a>
|
||||
<a href="/about.html">About</a>
|
||||
</nav>
|
||||
</header>
|
||||
<br>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
</script>
|
||||
<div id="popup" style="display:none; position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); background:white; padding:20px; border:2px solid #333; box-shadow:0 4px 8px rgba(0,0,0,0.1); z-index:1000; width:80%; max-width:500px;">
|
||||
<h2>ReviveMii Image Share</h2>
|
||||
<p>The ReviveMii Image Share is no longer being developed. Please use <a href="http://i.retrosite.org" style="color: blue">i.retrosite.org</a> or <a href="http://theimageshare.com" style="color: blue">theimageshare.com</a>.</p>
|
||||
<button onclick="closePopup()" style="background-color:#f44336; color:white; border:none; padding:5px 10px; cursor:pointer;">Close</button>
|
||||
</div>
|
||||
<div id="overlay" style="display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:999;"></div>
|
||||
|
||||
<script>
|
||||
window.onload = function() {
|
||||
setTimeout(function() {
|
||||
document.getElementById('popup').style.display = 'block';
|
||||
document.getElementById('overlay').style.display = 'block';
|
||||
}, 1000);
|
||||
};
|
||||
|
||||
function closePopup() {
|
||||
document.getElementById('popup').style.display = 'none';
|
||||
document.getElementById('overlay').style.display = 'none';
|
||||
}
|
||||
</script>
|
||||
<section class="project-hero" id="p">
|
||||
<div class="container">
|
||||
<h1>ReviveMii Image Transfer</h1>
|
||||
<p>A Revival for the Nintendo Image Share on 3ds and Wii U</p>
|
||||
<button class="cta" onclick="location.href='#p'">Learn More</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="project-details">
|
||||
<div class="container">
|
||||
<div class="project-description">
|
||||
<h2>About the Project</h2>
|
||||
<p>Upload Photos from your 3DS or Wii U and transfer it to your Computer!</p>
|
||||
</div>
|
||||
|
||||
<div class="project-features">
|
||||
<h2>How to use</h2>
|
||||
<ul>
|
||||
<p>Requirements</p>
|
||||
<li>• Wii U or 3DS</li>
|
||||
<li>• An Internet Connection</li>
|
||||
<li>• Computer or Smartphone</li>
|
||||
</ul><br>
|
||||
<ul>
|
||||
<li>• 1. Go to http://imageshare.d.errexe.xyz on your 3ds or Wii U (with http://)</li>
|
||||
<li>• 2. Upload an Image</li>
|
||||
<li>• 3. Scan the QR Code with your Smart Phone or type the URL in your Computer</li>
|
||||
<li>• 4. Download it</li>
|
||||
</ul>
|
||||
<h1 style="color: green">You now successfully transferred an Image from your Wii U/3DS to your Device!</h1>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer>
|
||||
<p>© 2024 ReviveMii.</p>
|
||||
<p><a href="/index.html#end">More Links in Home Footer</a><p>
|
||||
<p><a href="/contact.html">Contact Us</a></p> <p><a href="/feedback.html">Feedback</a></p>
|
||||
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
||||
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
||||
<p><a href="https://youtube.com/@revivemii">YouTube</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
BIN
img/rss.png
Normal file
BIN
img/rss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 352 B |
77
index.html
Normal file
77
index.html
Normal file
@ -0,0 +1,77 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>ReviveMii: We revive Nintendo Online Services</title>
|
||||
<link rel="stylesheet" href="css/1.css">
|
||||
<meta name="description" content="We bring life back to the old Software from Nintendo with Internet Functionality with custom servers. We have Servers for YouTube on Wii and Nintendo Image Share. Keywords: Nintendo Wii, Nintendo Wii U, Nintendo 3DS, Nintendo DSi">
|
||||
</head>
|
||||
<header>
|
||||
<div class="logo-container">
|
||||
<a href="index.html" class="logo" style="text-decoration: none">
|
||||
<img src="favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
||||
<span>ReviveMii</span>
|
||||
</a>
|
||||
</div>
|
||||
</a>
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="projects.html">Projects</a>
|
||||
<a href="about.html">About</a>
|
||||
</nav>
|
||||
</header>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<section class="hero">
|
||||
<div>
|
||||
<h1>ReviveMii</h1>
|
||||
<p>A Nintendo Revival Service.</p>
|
||||
<a href="projects.html" class="cta">Discover Featured Projects</a><br><br><br>
|
||||
<a href="https://github.com/ReviveMii" class="cta">Source Code (GitHub)</a><br><br>
|
||||
<iframe loading="lazy" src="https://status.errexe.xyz/badge?theme=dark" width="250" height="30" frameborder="0" scrolling="no"></iframe><br><br>
|
||||
<a href="https://status.errexe.xyz/" class="cta">Check the Server Status</a>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<a href="/discord-redirect.html" class="cta">Join Discord</a>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
</section>
|
||||
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
|
||||
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
|
||||
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
|
||||
</div>
|
||||
<script>
|
||||
if (!localStorage.getItem('cookiesAccepted')) {
|
||||
document.getElementById('cookiePopup').style.display = 'block';
|
||||
}
|
||||
|
||||
function acceptCookies() {
|
||||
localStorage.setItem('cookiesAccepted', 'true');
|
||||
document.getElementById('cookiePopup').style.display = 'none';
|
||||
}
|
||||
</script>
|
||||
<footer id="end" class="end">
|
||||
<p>© 2025 ReviveMii</p>
|
||||
<p><a href="/privacy">Privacy Policy</a></p>
|
||||
<p><a href="/terms">Terms of Service</a></p>
|
||||
<p><a href="/contact.html">Contact Us</a></p>
|
||||
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
||||
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
||||
<p><a href="https://www.youtube.com/@ReviveMii-Project">YouTube</a></p>
|
||||
<p><a href="http://yt.old.errexe.xyz/?query=ReviveMii">ReviveMii on ReviveTube</a></p>
|
||||
<p><a href="/cookies.html">Manage Cookies<p></a>
|
||||
<p><a href="/wc.html">What Cookies do we use?</a></p>
|
||||
<!-- Not working
|
||||
|
||||
<a href="http://rss.errexe.xyz/blog/revivemii.xml" target="_blank" style="display: inline-flex; align-items: center; text-decoration: none; background-color: #0077cc; color: white; padding: 8px 12px; border-radius: 4px; font-size: 14px;">
|
||||
<img src="/img/rss.png" alt="RSS" style="width: 16px; height: 16px; margin-right: 8px;">
|
||||
Subscribe to RSS
|
||||
</a>
|
||||
-->
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
70
off.html
Normal file
70
off.html
Normal file
@ -0,0 +1,70 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>ReviveMii - Maintenance</title>
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Arial', sans-serif;
|
||||
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
|
||||
color: #333;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 600px;
|
||||
padding: 20px;
|
||||
background: #fff;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
img {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 10px;
|
||||
color: #007bff;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 10px 20px;
|
||||
font-size: 1rem;
|
||||
color: #fff;
|
||||
background-color: #007bff;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<img src="favicon.ico" alt="ReviveMii Logo">
|
||||
<h1>ReviveMii Servers</h1>
|
||||
<p>Our servers are currently under maintenance. Please check back later or try reloading the site.</p>
|
||||
<button onclick="location.reload()">Reload</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
63
privacy/ccccccccccccccccccccccccccccccccccc.txt
Normal file
63
privacy/ccccccccccccccccccccccccccccccccccc.txt
Normal file
@ -0,0 +1,63 @@
|
||||
**DATENSCHUTZRICHTLINIE FÜR DAS CHATPROGRAMM "6dChat"**
|
||||
*Entwickelt von TheErrorExe und Silas Thimm*
|
||||
|
||||
---
|
||||
|
||||
**1. EINLEITUNG**
|
||||
Der Schutz Ihrer persönlichen Daten ist uns ein wichtiges Anliegen. Diese Datenschutzrichtlinie erläutert, wie wir, die Entwickler von 6dChat, personenbezogene Daten erheben, verarbeiten und schützen, um Ihre Privatsphäre zu wahren. Wir beachten die geltenden Datenschutzgesetze und handeln stets transparent.
|
||||
|
||||
---
|
||||
|
||||
**2. ERHEBUNG VON PERSONENBEZOGENEN DATEN**
|
||||
Bei der Registrierung zur Nutzung von 6dChat erheben wir folgende personenbezogene Daten:
|
||||
- Name
|
||||
- E-Mail-Adresse
|
||||
- Benutzername
|
||||
|
||||
Diese Daten werden ausschließlich zu Zwecken der Bereitstellung und Verbesserung der Anwendung sowie zur Gewährleistung der Sicherheit verarbeitet. Es erfolgt keine Erhebung weiterer Daten ohne Ihr ausdrückliches Einverständnis.
|
||||
|
||||
---
|
||||
|
||||
**3. VERARBEITUNG UND NUTZUNG DER DATEN**
|
||||
Die von Ihnen bereitgestellten Daten werden verwendet, um:
|
||||
- Ihnen den Zugang zu 6dChat zu ermöglichen
|
||||
- die Funktionalität der Anwendung sicherzustellen
|
||||
- den Nutzer-Support zu verbessern
|
||||
- sicherzustellen, dass die Nutzung der Anwendung den Nutzungsbedingungen entspricht
|
||||
|
||||
Wir garantieren, dass Ihre Daten nicht für andere Zwecke verwendet werden, insbesondere nicht für Werbung oder Marketing.
|
||||
|
||||
---
|
||||
|
||||
**4. DATENSICHERHEIT**
|
||||
Wir ergreifen angemessene technische und organisatorische Maßnahmen, um Ihre personenbezogenen Daten vor unbefugtem Zugriff, Verlust oder Missbrauch zu schützen. Dazu zählen unter anderem die Verwendung von Verschlüsselungstechnologien und sicheren Servern. Trotz dieser Maßnahmen kann keine absolute Sicherheit gewährleistet werden.
|
||||
|
||||
---
|
||||
|
||||
**5. WEITERGABE AN DRITTE**
|
||||
Ihre personenbezogenen Daten werden nicht an Dritte weitergegeben, es sei denn, dies ist zur Erfüllung gesetzlicher Verpflichtungen erforderlich oder Sie haben zuvor Ihre ausdrückliche Zustimmung gegeben. In solchen Fällen stellen wir sicher, dass auch die Dritten angemessene Datenschutzmaßnahmen einhalten.
|
||||
|
||||
---
|
||||
|
||||
**6. RECHTE DER NUTZER**
|
||||
Sie haben das Recht, jederzeit Auskunft über die von uns zu Ihrer Person gespeicherten Daten zu verlangen. Zudem können Sie die Berichtigung unrichtiger Daten sowie die Löschung Ihrer Daten verlangen, sofern diese nicht mehr zur Erfüllung der oben genannten Zwecke erforderlich sind oder gesetzliche Aufbewahrungsfristen entgegenstehen. Zur Ausübung dieser Rechte wenden Sie sich bitte an uns über die in der Anwendung angegebenen Kontaktmöglichkeiten.
|
||||
|
||||
---
|
||||
|
||||
**7. DATENSPEICHERUNG**
|
||||
Ihre personenbezogenen Daten werden nur so lange gespeichert, wie dies für die Zwecke, für die sie erhoben wurden, erforderlich ist. Nach Erfüllung dieser Zwecke werden Ihre Daten sicher gelöscht oder anonymisiert.
|
||||
|
||||
---
|
||||
|
||||
**8. ÄNDERUNGEN DER DATENSCHUTZRICHTLINIE**
|
||||
Diese Datenschutzrichtlinie kann von Zeit zu Zeit aktualisiert werden. Änderungen werden auf der folgenden Website veröffentlicht: https://theerrorexe.duckdns.org/privacy/latest.txt. Wir empfehlen Ihnen, diese regelmäßig zu überprüfen, um über alle Anpassungen informiert zu sein.
|
||||
|
||||
---
|
||||
|
||||
**9. KONTAKT**
|
||||
Für Fragen oder Anregungen zur Datenschutzrichtlinie oder zur Verarbeitung Ihrer personenbezogenen Daten wenden Sie sich bitte an uns. Die Kontaktdaten finden Sie in der Anwendung.
|
||||
|
||||
---
|
||||
|
||||
**Datum der letzten Aktualisierung:** [20. September 2024]
|
||||
**Entwickler:** TheErrorExe, Silas Thimm
|
103
privacy/index.html
Normal file
103
privacy/index.html
Normal file
@ -0,0 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Privacy Policy - ReviveMii</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
line-height: 1.6;
|
||||
margin: 20px;
|
||||
padding: 0;
|
||||
}
|
||||
h1, h2 {
|
||||
color: #333;
|
||||
}
|
||||
h1 {
|
||||
border-bottom: 2px solid #ddd;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
p {
|
||||
margin: 10px 0;
|
||||
}
|
||||
ul {
|
||||
margin: 10px 0;
|
||||
padding-left: 20px;
|
||||
}
|
||||
footer {
|
||||
margin-top: 20px;
|
||||
font-size: 0.9em;
|
||||
color: #555;
|
||||
}
|
||||
a {
|
||||
color: #007BFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Privacy Policy</h1>
|
||||
<p><strong>Last Updated:</strong> 23. December 2024</p>
|
||||
|
||||
<p>At ReviveMii, we take your privacy seriously. This Privacy Policy outlines how we collect, use, and protect your personal data when you use our services. Please read this policy carefully to understand how we handle your information.</p>
|
||||
|
||||
<h2>1. Data Collection</h2>
|
||||
<p>We collect only the data necessary for providing the Service. This includes:</p>
|
||||
<ul>
|
||||
<li><strong>Personal Information:</strong> Optional data you provide (e.g., email addresses when contacting us).</li>
|
||||
<li><strong>Usage Data:</strong> Non-personally identifiable data such as system logs and connection metadata.</li>
|
||||
<li><strong>Third-Party Services:</strong> When using third-party services within ReviveMii, each service may have its own privacy policies.</li>
|
||||
</ul>
|
||||
|
||||
<h2>2. Use of Data</h2>
|
||||
<p>We use your data for the following purposes:</p>
|
||||
<ul>
|
||||
<li>To provide and maintain the Service.</li>
|
||||
<li>To improve the functionality of the Service.</li>
|
||||
<li>To comply with legal obligations.</li>
|
||||
</ul>
|
||||
|
||||
<h2>3. Data Sharing</h2>
|
||||
<p>We do not share your personal data with third parties except when:</p>
|
||||
<ul>
|
||||
<li>Required by law or legal process.</li>
|
||||
<li>Necessary to protect our rights or the rights of others.</li>
|
||||
<li>When using third-party services as part of the Service.</li>
|
||||
</ul>
|
||||
|
||||
<h2>4. Security</h2>
|
||||
<p>We take reasonable precautions to protect your data from unauthorized access, use, or disclosure. However, no data transmission over the internet can be guaranteed as 100% secure.</p>
|
||||
|
||||
<h2>5. Your Rights</h2>
|
||||
<p>As a user within the EU, you have the right to:</p>
|
||||
<ul>
|
||||
<li>Access and correct your personal data.</li>
|
||||
<li>Request the deletion of your personal data.</li>
|
||||
<li>Request data portability.</li>
|
||||
</ul>
|
||||
<p>You can exercise your rights by contacting us at theerrorexe@gmail.com.</p>
|
||||
|
||||
<h2>6. Third-Party Services</h2>
|
||||
<p>Some features of ReviveMii may use third-party services that have their own privacy policies. You are encouraged to review these third-party policies before using the services.</p>
|
||||
|
||||
<h2>7. Changes to This Privacy Policy</h2>
|
||||
<p>We may update this Privacy Policy. Any changes will be posted here, and if the changes are significant, we will notify you accordingly.</p>
|
||||
|
||||
<h2>8. Contact Us</h2>
|
||||
<p>If you have any questions about this Privacy Policy, please contact us:</p>
|
||||
<p><strong>Email:</strong> theerrorexe@gmail.com</p>
|
||||
<p><strong>Repositories:</strong></p>
|
||||
<ul>
|
||||
<li><a href="https://git.errexe.xyz" target="_blank">https://git.errexe.xyz</a></li>
|
||||
<li><a href="https://github.com/ReviveMii" target="_blank">https://github.com/ReviveMii</a></li>
|
||||
</ul>
|
||||
|
||||
<footer>
|
||||
<p>© 2024 ReviveMii Project. All rights reserved.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
85
projects.html
Normal file
85
projects.html
Normal file
@ -0,0 +1,85 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Featured Projects and Services | ReviveMii</title>
|
||||
<link rel="stylesheet" href="/css/1.css">
|
||||
<meta name="description" content="Services and Projects by the ReviveMii Project">
|
||||
</head>
|
||||
<body>
|
||||
<header> <div class="logo-container">
|
||||
<a href="index.html" class="logo" style="text-decoration: none">
|
||||
<img src="favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
||||
<span>ReviveMii</span>
|
||||
</a>
|
||||
</div>
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="projects.html">Projects</a>
|
||||
<a href="about.html">About</a>
|
||||
</nav>
|
||||
</header>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<section class="projects-hero">
|
||||
<div class="container">
|
||||
<h1>Our Featured Projects and Services</h1>
|
||||
<p>ReviveMii Projects</p>
|
||||
</div>
|
||||
</section>
|
||||
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
|
||||
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
|
||||
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
if (!localStorage.getItem('cookiesAccepted')) {
|
||||
document.getElementById('cookiePopup').style.display = 'block';
|
||||
}
|
||||
|
||||
function acceptCookies() {
|
||||
localStorage.setItem('cookiesAccepted', 'true');
|
||||
document.getElementById('cookiePopup').style.display = 'none';
|
||||
}
|
||||
</script>
|
||||
<section class="projects-list">
|
||||
<div class="container">
|
||||
<div class="project-card">
|
||||
<img src="/revivetube.png" alt="ReviveTube">
|
||||
<div class="card-content">
|
||||
<h3>ReviveTube</h3>
|
||||
<p>Watch YouTube Videos on your Wii</p>
|
||||
<a href="/revivetube" class="btn">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
<div class="project-card">
|
||||
<img src="/imageshare.jpg" alt="imageshare">
|
||||
<div class="card-content">
|
||||
<h3>ReviveMii Image Transfer</h3>
|
||||
<p>Revival for the Nintendo Image Share Feature on 3ds and Wii U</p>
|
||||
<a href="/imageshare" class="btn">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>© 2025 ReviveMii</p>
|
||||
<p><a href="/index.html#end">More Links in Home Footer</a><p>
|
||||
<p><a href="contact.html">Contact Us</a></p>
|
||||
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
||||
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
||||
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
BIN
revivetube.png
Normal file
BIN
revivetube.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 239 KiB |
77
revivetube/index.html
Normal file
77
revivetube/index.html
Normal file
@ -0,0 +1,77 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>ReviveTube | YouTube on Wii! | ReviveMii</title>
|
||||
<link rel="stylesheet" href="/css/1.css">
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<meta name="description" content="Watch YouTube Videos on your Wii!">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="logo-container">
|
||||
<a href="index.html" class="logo" style="text-decoration: none">
|
||||
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
|
||||
<span>ReviveMii</span>
|
||||
</a>
|
||||
</div> <nav>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/projects.html">Projects</a>
|
||||
<a href="/about.html">About</a>
|
||||
</nav>
|
||||
</header>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
</script>
|
||||
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
|
||||
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
|
||||
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
|
||||
</div>
|
||||
<section class="project-hero" id="p">
|
||||
<div class="container">
|
||||
<h1>ReviveTube</h1>
|
||||
<p>A Revival for the Youtube Website on the Wii</p>
|
||||
<button class="cta" onclick="location.href='#p'">Learn More</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="project-details">
|
||||
<div class="container">
|
||||
<div class="project-description">
|
||||
<h2>About the Project</h2>
|
||||
<p>With ReviveTube you can watch YouTube Videos on your Wii. Without Homebrew! (If you have homebrew on your Wii, we recommend the Homebrew Service RiiTube by RiiConnect24/WiiLink, because it supports fullscreen, and ReviveTube supports no Full Screen at the time <a href="https://rc24.xyz/services/riitube" style="color: blue";>RiiTube (Old RC24) </a><a href="https://www.wiilink24.com/services/riitube/" style="color: blue">RiiTube (WiiLink</a>)</p>
|
||||
</div>
|
||||
|
||||
<div class="project-features">
|
||||
<h2>How to setup</h2>
|
||||
<ul>
|
||||
<p>Requirements</p>
|
||||
<li>• Internet Channel Version: At least Ver. April 11, 2007 (Open the Wii Shop Channel to update)</li>
|
||||
<li>• A Wii lol (Info for Dolphin Users: The Loading Screen for ReviveTube is not working on Dolphin, i don't know why)</li>
|
||||
<li>• An Internet Connection</li>
|
||||
<li>• Patience (The Internet Channel is slow)</li>
|
||||
</ul><br>
|
||||
<ul>
|
||||
<li>• 1. Open the Internet Channel</li>
|
||||
<li>• 2. Go to http://yt.old.errexe.xyz/ (with http://)</li>
|
||||
<li>• 3. (Optional) Save to Bookmarks</li>
|
||||
<li><strong>Warning: The Website will only search Videos, if you press "Go", "Okay" will not work</strong></li>
|
||||
</ul>
|
||||
<h1 style="color: green">Have fun with ReviveTube!</h1>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer>
|
||||
<p>© 2025 ReviveMii</p>
|
||||
<p><a href="/index.html#end">More Links in Home Footer</a><p>
|
||||
<p><a href="/contact.html">Contact Us</a></p>
|
||||
<p><a href="/discord-redirect.html">Join Discord</a></p>
|
||||
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
|
||||
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
134
revivetube/t-and-p.html
Normal file
134
revivetube/t-and-p.html
Normal file
@ -0,0 +1,134 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>ReviveTube - Terms of Service and Privacy Policy</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
line-height: 1.6;
|
||||
margin: 20px;
|
||||
color: #333;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
color: #0056b3;
|
||||
}
|
||||
a {
|
||||
color: #0056b3;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.section {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.section h2 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.footer {
|
||||
margin-top: 40px;
|
||||
font-size: 0.9em;
|
||||
color: #777;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>ReviveTube - Terms of Service and Privacy Policy</h1>
|
||||
<p><strong>Last Updated:</strong> 7. Dec 2024 12:41 CET</p>
|
||||
</header>
|
||||
|
||||
<section class="section">
|
||||
<h2>1. Scope of the Service</h2>
|
||||
<p>ReviveTube is an independent service that revives the discontinued YouTube functionality for the Nintendo Wii console. ReviveTube is not affiliated with or endorsed by Nintendo, Google, or YouTube. This service is operated within the European Union and is accessible to users worldwide.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>2. Compliance with GDPR</h2>
|
||||
<p>Because ReviveTube is based in the European Union, the service complies with the General Data Protection Regulation (GDPR). This means that:</p>
|
||||
<ul>
|
||||
<li>Your personal data is handled with the highest level of security and transparency.</li>
|
||||
<li>You have specific rights under the GDPR, including:
|
||||
<ul>
|
||||
<li>The right to access your data.</li>
|
||||
<li>The right to correct inaccuracies in your data.</li>
|
||||
<li>The right to request deletion of your data ("right to be forgotten").</li>
|
||||
<li>The right to restrict or object to data processing.</li>
|
||||
<li>The right to data portability.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<p>To exercise these rights or learn more about how we handle your data, please contact us at <a href="mailto:theerrorexe@gmail.com">theerrorexe@gmail.com</a>.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>3. Non-Usage of Cookies and IP Addresses</h2>
|
||||
<p>ReviveTube does not use cookies or similar tracking technologies. Additionally, we do not save your IP address. This ensures that your browsing experience remains private and secure, in compliance with GDPR and privacy-first principles.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>4. Acceptable Use Policy</h2>
|
||||
<ul>
|
||||
<li>You agree to use ReviveTube responsibly and only for lawful purposes.</li>
|
||||
<li>You must not share or access content that:
|
||||
<ul>
|
||||
<li>Violates copyright or intellectual property laws.</li>
|
||||
<li>Promotes hate speech, violence, or discrimination.</li>
|
||||
<li>Contains explicit, illegal, or harmful material.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<p>We reserve the right to remove inappropriate content or suspend users who violate these terms.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>5. Disclaimer of Liability</h2>
|
||||
<p>ReviveTube is provided "as-is" and "as available." We do not guarantee uninterrupted access, error-free performance, or compatibility with all Wii systems. ReviveMii project is not liable for any damage, loss of data, or other issues arising from the use of this service.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>6. Privacy Policy</h2>
|
||||
|
||||
<h3>6.1 Data Collection</h3>
|
||||
<p>We do not collect personal data unless you voluntarily provide it (e.g., through feedback).</p>
|
||||
|
||||
<h3>6.2 Data Usage</h3>
|
||||
<p>The collected data is used to improve service functionality and resolve technical issues.</p>
|
||||
|
||||
<h3>6.3 Third-Party Services</h3>
|
||||
<p>ReviveTube may link to third-party content, such as YouTube links. We are not responsible for the data handling practices of these third-party services. Please review their privacy policies before interacting with them.</p>
|
||||
|
||||
<h3>6.4 User Rights</h3>
|
||||
<p>As required by GDPR, you have the right to:
|
||||
<ul>
|
||||
<li>Request access to the data we collect about you.</li>
|
||||
<li>Request deletion of any personal data you may have shared with us.</li>
|
||||
<li>Request a copy of your data in a portable format.</li>
|
||||
<li>Withdraw consent to data processing at any time.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>To exercise these rights, contact us at <a href="mailto:theerrorexe@gmail.com">theerrorexe@gmail.com</a>.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>7. Changes to Terms and Privacy Policy</h2>
|
||||
<p>We may update these terms and policies periodically to reflect changes in the service or legal requirements. The Date of the last Change is on http://yt.old.errexe.xyz/</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>8. Termination of Service</h2>
|
||||
<p>We reserve the right to suspend or terminate access to ReviveTube for any user at our discretion, including but not limited to violations of these terms.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>9. Contact Us</h2>
|
||||
<p>If you have any questions about these Terms of Service or the Privacy Policy, please contact us at <a href="mailto:theerrorexe@gmail.com">theerrorexe@gmail.com</a>.</p>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<p>© 2024 ReviveMii Project. All rights reserved.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
4
robots.txt
Normal file
4
robots.txt
Normal file
@ -0,0 +1,4 @@
|
||||
User-agent: *
|
||||
Crawl-Delay: 5
|
||||
Sitemap: /dl/sitemap.xml
|
||||
Disallow: /discord-redirect.html
|
3
status/index.html
Normal file
3
status/index.html
Normal file
@ -0,0 +1,3 @@
|
||||
<script>
|
||||
window.location.href = "https://status.errexe.xyz/";
|
||||
</script>
|
46
styles.css
Normal file
46
styles.css
Normal file
@ -0,0 +1,46 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f0f0f0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
text-align: center;
|
||||
background: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-bottom: 20px;
|
||||
font-size: 24px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.button-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
padding: 15px 30px;
|
||||
font-size: 18px;
|
||||
color: #fff;
|
||||
background-color: #007bff;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
|
120
terms/index.html
Normal file
120
terms/index.html
Normal file
@ -0,0 +1,120 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Terms of Service - ReviveMii</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
line-height: 1.6;
|
||||
margin: 20px;
|
||||
padding: 0;
|
||||
}
|
||||
h1, h2 {
|
||||
color: #333;
|
||||
}
|
||||
h1 {
|
||||
border-bottom: 2px solid #ddd;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
p {
|
||||
margin: 10px 0;
|
||||
}
|
||||
ul {
|
||||
margin: 10px 0;
|
||||
padding-left: 20px;
|
||||
}
|
||||
footer {
|
||||
margin-top: 20px;
|
||||
font-size: 0.9em;
|
||||
color: #555;
|
||||
}
|
||||
a {
|
||||
color: #007BFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Terms of Service</h1>
|
||||
<p><strong>Last Updated:</strong> 23. December 2024</p>
|
||||
|
||||
<p>Welcome to <strong>ReviveMii</strong> ("the Service"). By accessing or using the Service provided by the <strong>ReviveMii Project</strong>, you agree to be bound by the following terms and conditions ("Terms"). If you do not agree to these Terms, you may not use the Service.</p>
|
||||
|
||||
<h2>1. Description of the Service</h2>
|
||||
<p>ReviveMii is an open-source project based in the European Union (EU) that provides online connectivity and related services for legacy Nintendo consoles and software. The Service is available globally and adheres to EU laws, including the General Data Protection Regulation (GDPR). ReviveMii is not affiliated with, endorsed by, or associated with Nintendo Co., Ltd.</p>
|
||||
<p>Some services provided by ReviveMii may have their own specific terms of service or conditions. You should review these specific conditions before using those services.</p>
|
||||
<p>All source code related to the Service is publicly available under an open-source license. You can access the source code at the following repositories:</p>
|
||||
<ul>
|
||||
<li><a href="https://git.errexe.xyz" target="_blank">https://git.errexe.xyz</a></li>
|
||||
<li><a href="https://github.com/ReviveMii" target="_blank">https://github.com/ReviveMii</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>2. Eligibility</h2>
|
||||
<p>The Service is available to users worldwide. To use the Service, you must:</p>
|
||||
<ul>
|
||||
<li>Be at least the minimum age for processing personal data as required by the laws in your country.</li>
|
||||
<li>Comply with all applicable international, EU, and local laws, including copyright and intellectual property regulations.</li>
|
||||
</ul>
|
||||
|
||||
<h2>3. Open-Source Code and Licensing</h2>
|
||||
<ul>
|
||||
<li>The Service is open-source, and its code is distributed under the license of the Git Repo.</li>
|
||||
<li>You are permitted to view, modify, and distribute the source code, provided you comply with the terms of the open-source license.</li>
|
||||
<li>ReviveMii does not distribute copyrighted software, firmware, or content owned by Nintendo or other third parties.</li>
|
||||
</ul>
|
||||
|
||||
<h2>4. Prohibited Conduct</h2>
|
||||
<p>You agree not to:</p>
|
||||
<ul>
|
||||
<li>Use the Service for illegal purposes or in violation of applicable laws.</li>
|
||||
<li>Engage in activities that infringe intellectual property rights, including using the Service with unauthorized or pirated software.</li>
|
||||
<li>Exploit vulnerabilities in the Service or engage in hacking or unauthorized modifications.</li>
|
||||
<li>Harass, threaten, or harm other users or interfere with their use of the Service.</li>
|
||||
</ul>
|
||||
|
||||
<h2>5. Data Protection and Privacy</h2>
|
||||
<p>As the Service operates within the EU, it complies with the General Data Protection Regulation (GDPR). The following applies:</p>
|
||||
<ul>
|
||||
<li>We collect only the minimal data necessary for the operation of the Service, such as system identifiers and usage data.</li>
|
||||
<li>Your data will not be shared with third parties, except as required by law.</li>
|
||||
<li>Additional details about our data practices can be found in our <a href="https://revivemii.errexe.xyz/privacy/" target="_blank">Privacy Policy</a>.</li>
|
||||
</ul>
|
||||
|
||||
<h2>6. Disclaimer of Liability</h2>
|
||||
<ul>
|
||||
<li>The Service is provided "as is" without any warranty, either express or implied.</li>
|
||||
<li>The ReviveMii Project is not liable for any damages, losses, or legal issues resulting from the use of the Service.</li>
|
||||
<li>We are not responsible for any issues related to your console, software, or hardware while using the Service.</li>
|
||||
</ul>
|
||||
|
||||
<h2>7. Termination</h2>
|
||||
<p>We reserve the right to suspend or terminate your access to the Service at any time, for any reason, including but not limited to violations of these Terms or applicable laws.</p>
|
||||
|
||||
<h2>8. Changes to the Terms</h2>
|
||||
<p>ReviveMii may update these Terms at any time. Significant changes will be communicated, and your continued use of the Service after changes constitutes acceptance of the new Terms.</p>
|
||||
|
||||
<h2>9. Third-Party Content</h2>
|
||||
<p>The Service may interact with third-party software or services. ReviveMii is not responsible for the content, policies, or actions of third parties.</p>
|
||||
|
||||
<h2>10. Governing Law</h2>
|
||||
<p>These Terms are governed by and construed in accordance with the laws of the European Union and the member state where the ReviveMii Project operates.</p>
|
||||
|
||||
<h2>11. Contact</h2>
|
||||
<p>If you have questions or concerns about these Terms, please contact us at:</p>
|
||||
<p><strong>Email:</strong> theerrorexe@gmail.com</p>
|
||||
<p><strong>Repositories:</strong></p>
|
||||
<ul>
|
||||
<li><a href="https://git.errexe.xyz" target="_blank">https://git.errexe.xyz</a></li>
|
||||
<li><a href="https://github.com/ReviveMii" target="_blank">https://github.com/ReviveMii</a></li>
|
||||
</ul>
|
||||
|
||||
<footer>
|
||||
<p>© 2024 ReviveMii Project. Licensed under [Insert License Name].</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
74
wc.html
Normal file
74
wc.html
Normal file
@ -0,0 +1,74 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cookie Usage List</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 80%;
|
||||
margin: 50px auto;
|
||||
background-color: #ffffff;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
background-color: #f9f9f9;
|
||||
margin: 10px 0;
|
||||
padding: 15px;
|
||||
border-left: 5px solid #007BFF;
|
||||
font-size: 16px;
|
||||
color: #333;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
li:hover {
|
||||
background-color: #f1f1f1;
|
||||
border-left-color: #0056b3;
|
||||
}
|
||||
|
||||
.icon {
|
||||
margin-right: 10px;
|
||||
color: #007BFF;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
<h1>Cookie Usage List</h1>
|
||||
<ul>
|
||||
<li>Wii/WiiU/3DS/DSi Only Cookies: Used for the Access Warning Site</li>
|
||||
<!--<li>Login Session Cookies: Don't login everytime</li>-->
|
||||
<li>Accept Cookies: To check if you accepted the cookies</li>
|
||||
<li><h1>Analytics</h1></li>
|
||||
<li>Time on Site (Anonymous)</li>
|
||||
<li>What Sites are klicked very often (Anonymous)</li>
|
||||
<li>What Sites are avoided (Anonymous)</li>
|
||||
<li>Why are we using our own Analytics tool and not Google Analytics? Because Google Analytics saves your IP Adress and your User Agent and more, and we don't like that</li>
|
||||
<li>ReviveMii Analytics will not collect any personal data or ip adress or user agent.</li>
|
||||
<li>ReviveMii Public Analytics: <a href="https://analytics.errexe.xyz/stats-gui">Visit</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user