第一次提交

This commit is contained in:
2025-12-02 17:38:59 +08:00
parent 56f87ecd25
commit e09f1f38e6
40 changed files with 6647 additions and 0 deletions

21
src/index.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Attendance Counter</title>
<script type="module" src="/main.js" defer></script>
</head>
<body>
<div class="container">
<h1>Attendance Counter</h1>
<div class="card">
<p>Select the attendance Excel file to process.</p>
<button id="select-file-btn" type="button">Select Input File (.xlsx)</button>
<p id="status-msg"></p>
</div>
</div>
</body>
</html>