2025-02-12 13:05:01 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="pl">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Zarządzanie Uczniami</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<h1>Zarządzanie Uczniami</h1>
|
2025-02-12 13:27:22 +00:00
|
|
|
<!-- Zakładki -->
|
|
|
|
<div class="tabs">
|
|
|
|
<button id="students-tab">Uczniowie</button>
|
|
|
|
<button id="stats-tab">Statystyka</button>
|
2025-02-14 10:23:48 +00:00
|
|
|
<button id="criteria-tab">Zarządzanie kryteriami</button>
|
2025-02-12 13:27:22 +00:00
|
|
|
</div>
|
2025-02-12 13:05:01 +00:00
|
|
|
<!-- Lista uczniów -->
|
|
|
|
<div id="students-list"></div>
|
2025-02-12 13:27:22 +00:00
|
|
|
<!-- Statystyki -->
|
|
|
|
<div id="stats-content" style="display: none;"></div>
|
2025-02-14 10:23:48 +00:00
|
|
|
<!-- Zarządzanie kryteriami -->
|
|
|
|
<div id="criteria-content" style="display: none;">
|
|
|
|
<h2>Lista kryteriów</h2>
|
|
|
|
<div id="criteria-list"></div>
|
|
|
|
<h2>Dodaj nowe kryterium</h2>
|
|
|
|
<form id="add-criteria-form">
|
|
|
|
<label for="new-criteria-name">Nazwa:</label>
|
|
|
|
<input type="text" id="new-criteria-name" required>
|
|
|
|
<label for="new-criteria-points">Punkty:</label>
|
|
|
|
<input type="number" id="new-criteria-points" required>
|
|
|
|
<button type="submit">Dodaj</button>
|
|
|
|
</form>
|
|
|
|
<h2>Edytuj kryterium</h2>
|
|
|
|
<form id="edit-criteria-form">
|
|
|
|
<label for="edit-criteria-name">Wybierz kryterium:</label>
|
|
|
|
<select id="edit-criteria-name" required></select>
|
|
|
|
<label for="edit-criteria-new-name">Nowa nazwa:</label>
|
|
|
|
<input type="text" id="edit-criteria-new-name" required>
|
|
|
|
<label for="edit-criteria-points">Punkty:</label>
|
|
|
|
<input type="number" id="edit-criteria-points" required>
|
|
|
|
<button type="submit">Zapisz zmiany</button>
|
|
|
|
</form>
|
|
|
|
<h2>Usuń kryterium</h2>
|
|
|
|
<form id="delete-criteria-form">
|
|
|
|
<label for="delete-criteria-name">Wybierz kryterium:</label>
|
|
|
|
<select id="delete-criteria-name" required></select>
|
|
|
|
<button type="submit">Usuń</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2025-02-12 13:05:01 +00:00
|
|
|
<!-- Przycisk do zapisywania danych -->
|
|
|
|
<button id="save-button">Zapisz dane</button>
|
|
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|