2024-09-01 17:26:55 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Imgsort 2</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
2024-09-02 14:28:06 +02:00
|
|
|
<link rel="icon" type="image/x-icon" href="favicon.png">
|
2024-09-01 17:26:55 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-09-01 18:36:16 +02:00
|
|
|
<script src="index.js" async></script>
|
2024-09-01 17:26:55 +02:00
|
|
|
|
|
|
|
<div id="preload-file" style="display: none; visibility: hidden"></div>
|
|
|
|
<main>
|
|
|
|
|
|
|
|
<div class="main-box">
|
|
|
|
<div class="current-file" id="current-file">
|
2024-09-01 23:48:37 +02:00
|
|
|
<div class="splash-text">Imgsort <i>2</i></div>
|
2024-09-01 17:26:55 +02:00
|
|
|
<button onclick="window.location.href='config.html';" id="configure-button">Configure</button>
|
|
|
|
<button onclick="setCurrentFile()" id="start">Start</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="second-box">
|
2024-09-02 14:28:06 +02:00
|
|
|
<div class="buttons" id="buttons">
|
|
|
|
<input id="filename" placeholder="filename" type="text" class="filename-input"></input>
|
|
|
|
<button onclick="undo()" class="move-button" id="undo-button">Undo</button>
|
|
|
|
<button onclick="skip()" class="move-button" id="skip-button">Skip</button>
|
2024-09-01 17:26:55 +02:00
|
|
|
<span class="move-buttons" id="move-buttons"></span>
|
2024-09-02 14:28:06 +02:00
|
|
|
<br>
|
2024-09-01 17:26:55 +02:00
|
|
|
<button onclick="window.location.href='config.html';" id="configure-button">Configure</button>
|
|
|
|
</div>
|
|
|
|
<div class="file-list">
|
|
|
|
Files:
|
2024-09-01 23:48:37 +02:00
|
|
|
<div class="file-list-content" id="file-list">
|
|
|
|
<p class="file-list-item path">No files</p>
|
|
|
|
</div>
|
2024-09-01 17:26:55 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
|
|
<!-- <div class="keydebug">Key: <span id="keydebug"></span></div> -->
|
2024-09-01 19:36:00 +02:00
|
|
|
<div class="statusline">Status: <span id="status">Loading</span></div>
|
2024-09-01 17:26:55 +02:00
|
|
|
<!-- Imgsort 2 by Matthias Quintern -->
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|