lukcy-draw/legacy/index.html
2025-12-12 09:15:19 +07:00

59 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Year End Party - Lucky Draw</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap" rel="stylesheet">
</head>
<body>
<div class="app-container">
<!-- Header -->
<header class="main-header">
<h1 class="event-title">Year End Party</h1>
<h2 class="company-name">Daoukiwoom Innovation</h2>
</header>
<!-- Main Content -->
<main class="draw-area">
<div class="slot-machine">
<div class="slot-box" id="slot-1">
<div class="digit-strip">0 1 2 3 4 5 6 7 8 9 0</div>
</div>
<div class="slot-box" id="slot-2">
<div class="digit-strip">0 1 2 3 4 5 6 7 8 9 0</div>
</div>
<div class="slot-box" id="slot-3">
<div class="digit-strip">0 1 2 3 4 5 6 7 8 9 0</div>
</div>
</div>
<button id="draw-btn" class="draw-button">DRAW</button>
<div id="status-message" class="status-message"></div>
</main>
<!-- History Panel -->
<aside class="history-panel">
<h3>History</h3>
<ul id="history-list">
<!-- History items will be populated here -->
</ul>
<div class="history-controls">
<div class="control-group">
<label for="max-number-input">Max Number:</label>
<input type="number" id="max-number-input" min="1" value="100">
</div>
<button id="reset-btn" class="small-btn">Reset Pool</button>
</div>
</aside>
</div>
<script src="app.js"></script>
</body>
</html>