45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<!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">
|
|
</head>
|
|
<body>
|
|
<script src="index.js" async></script>
|
|
|
|
<div id="preload-file" style="display: none; visibility: hidden"></div>
|
|
<main>
|
|
|
|
<div class="main-box">
|
|
<div class="current-file" id="current-file">
|
|
<div class="imgsort2">Imgsort <i>2</i></div>
|
|
<br>
|
|
<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">
|
|
<div id="buttons">
|
|
<button onclick="undo()" id="undo-button">Undo</button>
|
|
<button onclick="skip()" id="skip-button">Skip</button>
|
|
<span class="move-buttons" id="move-buttons"></span>
|
|
<button onclick="window.location.href='config.html';" id="configure-button">Configure</button>
|
|
</div>
|
|
<div class="file-list">
|
|
Files:
|
|
<div class="file-list-content" id="file-list"></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
<!-- <div class="keydebug">Key: <span id="keydebug"></span></div> -->
|
|
<div class="statusline">Status: <span id="status"></span></div>
|
|
<!-- Imgsort 2 by Matthias Quintern -->
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|