mirror of
https://github.com/Grasscutters/GrassClipper.git
synced 2024-11-22 15:37:48 +00:00
26 lines
736 B
HTML
26 lines
736 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="style/index.css" />
|
|
<script src="js/neutralino.js"></script>
|
|
<script src="js/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="halvesContainer">
|
|
<div id="firstHalf">
|
|
<button class="playBtn" onclick="launchOfficial()">Play Official</button>
|
|
</div>
|
|
<div id="secondHalf">
|
|
<button class="playBtn">Play Private</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="bottomBar">
|
|
<div class="bottomSection">
|
|
<button class="smolBtn" onclick="setGenshinImpactFolder()">Set Genshin Impact folder</button>
|
|
<span id="genshinPath" style="margin-top: 4px;"></span>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|