2021-09-14 12:06:09 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
|
|
|
<!-- CSS styles -->
|
|
|
|
<link rel="stylesheet" href="../css/index.css">
|
2021-10-14 23:35:29 +03:00
|
|
|
<link rel="stylesheet" href="../css/hint.min.css">
|
2021-10-18 00:59:15 +03:00
|
|
|
<link rel="stylesheet" href="../css/layout.min.css">
|
2021-09-14 12:06:09 +03:00
|
|
|
|
|
|
|
<!-- JS scripts -->
|
2021-10-14 21:05:44 +03:00
|
|
|
<script>require('../js/index.js');</script>
|
2021-09-14 12:06:09 +03:00
|
|
|
|
2021-11-04 18:07:01 +03:00
|
|
|
<title>An Anime Game Linux Launcher</title>
|
2021-09-14 12:06:09 +03:00
|
|
|
</head>
|
|
|
|
|
2021-11-27 20:39:35 +03:00
|
|
|
<body theme="light">
|
|
|
|
<img class="background">
|
|
|
|
|
2021-11-04 18:46:06 +03:00
|
|
|
<div id="downloader-panel" class="dark" style="display: none">
|
2021-10-14 21:05:44 +03:00
|
|
|
<div id="downloader-label">
|
2021-11-26 23:01:07 +03:00
|
|
|
<span id="downloaded">Downloading</span>
|
2021-10-14 21:05:44 +03:00
|
|
|
<span id="speed"></span>
|
|
|
|
<span id="eta"></span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="progress-bar" id="downloader">
|
|
|
|
<div class="progress"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-11-29 19:01:50 +03:00
|
|
|
<div id="launcher-content">
|
|
|
|
<iframe id="social" scrolling="no" style="position: absolute; border: 0; top: 0; left: 0;" width="100%" height="100%"></iframe>
|
2021-11-29 07:14:07 +03:00
|
|
|
</div>
|
2021-10-16 10:36:28 +03:00
|
|
|
|
2021-10-23 00:48:43 +03:00
|
|
|
<div id="settings">
|
2021-11-04 18:07:01 +03:00
|
|
|
<img src="../images/gear.png" class="unactive">
|
|
|
|
<img src="../images/gear-active.png" class="active">
|
2021-10-23 00:48:43 +03:00
|
|
|
</div>
|
|
|
|
|
2021-10-24 00:07:02 +03:00
|
|
|
<button class="button" id="launch" i18id="Launch">Launch</button>
|
2021-09-14 12:06:09 +03:00
|
|
|
</body>
|
|
|
|
</html>
|