22 lines
624 B
HTML
22 lines
624 B
HTML
<!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>
|