spfn-website/guides/index.html

54 lines
2 KiB
HTML
Raw Normal View History

2025-06-06 00:16:40 +01:00
<!DOCTYPE html>
<head>
<title>Guides | SPFN</title>
<link rel="stylesheet" href="../css/style.css">
</head>
<body>
<header>
2025-06-06 13:03:02 +01:00
<div style="display: flex;">
<h1 style="margin: 0 auto;">SPFN</h1>
<h2 style="font-size: 32px; margin: auto; padding: 12px">Guides</h2>
2025-06-06 00:16:40 +01:00
</div>
<nav>
<ul class="nav-links">
<a href="/"><button class="header-button">Home</button></a>
<a href="/guides"><button class="header-button">Guides</button></a>
<a href="/account"><button class="header-button">Account</button></a>
</ul>
</nav>
</header>
<main>
2025-06-06 13:03:02 +01:00
<div class="guide-container">
<div class="guide-buttons">
<button class="guide active" onclick="changeGuide('g-install')">Installation - Wii U</button>
<button class="guide" onclick="changeGuide('g-install-cemu')">Installation - Cemu</button>
<button class="guide" onclick="changeGuide('g-troubleshoot')">Troubleshooting - Wii U</button>
</div>
2025-06-06 00:16:40 +01:00
2025-06-06 13:03:02 +01:00
<div class="guide-content" id="g-install">
<h3>Installation - Wii U</h3>
<p>Install Plugins</p>
<p>Create Account</p>
</div>
<div class="guide-content" id="g-install-cemu" style="display: none;">
<h3>Installation - Cemu</h3>
<p>Install on Wii U first</p>
<p>Create Account</p>
<p>Dump SPFN account</p>
<p>Transfer to Cemu</p>
<p>Add network_services.xml to Cemu Folder</p>
</div>
<div class="guide-content" id="g-troubleshoot" style="display: none;">
<h3>Troubleshooting - Wii U</h3>
<p>Join the Discord</p>
</div>
2025-06-06 00:16:40 +01:00
</div>
<script type="text/javascript" src="guides.js"></script>
</main>
<footer>
<p class="center">Need assistance? <a href="https://discord.gg/grMSxZf">Join the Discord</a></p>
</footer>
</body>