Add initial implementation of Fantacalcio application

This commit is contained in:
Simone
2026-03-07 17:15:34 +01:00
parent 6e74a538ea
commit dc6fc7b7e0
41 changed files with 2086 additions and 0 deletions
Executable
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fantacalcio 4°H</title>
<link rel="stylesheet" href="index.css">
<script src="index.js" defer></script>
<?php include 'dati.php'; ?>
</head>
<body>
<h1 class="titolo">Fantacalcio 4°H</h1>
<div class="container">
<div class="sinistra">
<h2 style="text-align: center;">Squadre <button onclick="window.location='./squadre.php';">Gestisci squadre</button></h2>
<div id="listaSquadre" style="margin: 0; display: flex; flex-direction: row; gap: 40px;">
<!-- Riempito da JS -->
</div>
<button onclick="window.location='./partita.php';" class="inizia">Inizia giornata</button>
</div>
<div class="destra">
<h2>Classifica giocatori</h2>
<ol id="classificaGiocatori">
<!-- Riempito da JS -->
</ol>
</div>
</div>
</body>
</html>