projekt/index.html

36 lines
996 B
HTML

<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ocena Zachowania</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Ocena Zachowania - <span id="current-date"></span></h1>
<!-- Wybór kategorii -->
<div>
<label for="category-select">Wybierz kategorię:</label>
<select id="category-select" onchange="loadCriteriaByCategory()">
<!-- Kategorie zostaną załadowane dynamicznie -->
</select>
</div>
<h2>Kryteria oceny zachowania</h2>
<table>
<thead>
<tr>
<th>Uczeń</th>
<!-- Kryteria zostaną załadowane dynamicznie jako kolumny -->
</tr>
</thead>
<tbody id="student-table">
<!-- Dane uczniów będą generowane dynamicznie -->
</tbody>
</table>
<script src="js/app.js"></script>
</body>
</html>