24 lines
781 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sport Attendance Sheet</title>
<style>
body { font-family: Arial, sans-serif; margin: 2em; }
table { border-collapse: collapse; width: 100%; margin-bottom: 1em; }
th, td { border: 1px solid #ccc; padding: 0.5em; text-align: center; }
th { background: #f0f0f0; }
.clickable { cursor: pointer; background: #e7f7e7; }
.yes { background: #b6e7b6; font-weight: bold; }
input[type="text"] { width: 90%; }
#add-date { margin-top: 1em; }
</style>
</head>
<body>
<h1>Sport Attendance Sheet</h1>
<div id="attendance-table"></div>
<button id="add-date">Add Date</button>
<script src="/static/app.js"></script>
</body>
</html>