43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>ElectricGames</title>
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<div id="sidebar">
|
||
|
<button class="sidebar-button" id="downloadsTab">Downloads</button>
|
||
|
<button class="sidebar-button" id="libraryTab">Library</button>
|
||
|
</div>
|
||
|
<main>
|
||
|
<h1>ElectricGames</h1>
|
||
|
<!-- Downloads Section -->
|
||
|
<div id="downloadsSection" class="section active">
|
||
|
<div class="browser-navigation">
|
||
|
<button id="backButton">Back</button>
|
||
|
<button id="forwardButton">Forward</button>
|
||
|
</div>
|
||
|
<webview id="gameBrowser" src="https://steamunlocked.net"></webview>
|
||
|
</div>
|
||
|
|
||
|
<!-- Library Section -->
|
||
|
<div id="librarySection" class="section">
|
||
|
<h2>Library</h2>
|
||
|
<button id="selectLibraryFolder">Select Library Folder</button>
|
||
|
<div id="gameList"></div>
|
||
|
|
||
|
<h3>Wine Setup</h3>
|
||
|
<button id="selectWineButton">Select Wine Binary</button>
|
||
|
<button id="runGameButton">Run Game with Wine</button>
|
||
|
<p id="wineStatus"></p>
|
||
|
</div>
|
||
|
</main>
|
||
|
</div>
|
||
|
|
||
|
<script src="renderer.js"></script>
|
||
|
</body>
|
||
|
</html>
|