This repository was archived by the owner on Jan 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.26 KB
/
index.html
File metadata and controls
28 lines (28 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';">
<link rel="stylesheet" href="assets/style.css">
<title>SimpleClient</title>
<link rel="icon" href="assets/icon.ico">
<script src="assets/script.js"></script>
</head>
<body>
<img id="background-image" src="assets/background.jpg" draggable="false">
<div id="logo"><img src="assets/logo.png" draggable="false"><p>impleClient</p></div>
<a id="download-link"><button id="download" value="">Download</button></a>
<!--
<div id="platforms" style="visibility: hidden;"></div>
<button id="platforms-button" onclick="clickPlatformsButton()"></button>
-->
<a href="https://discord.gg/HY9b9XDqTN"><button id="discord" value="">Discord</button></a>
<script>
getWindowsInstaller().then(installer => {
document.getElementById('download-link').href = installer.browser_download_url
document.getElementById('download-link').download = installer.name
})
</script>
</body>
</html>