forked from SimonezYT/fantacalcio-4h
29 lines
1.1 KiB
PHP
Executable File
29 lines
1.1 KiB
PHP
Executable File
<!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>
|