This commit is contained in:
2025-12-31 01:17:12 +01:00
commit b7a802a52c
34 changed files with 4567 additions and 0 deletions

45
app/index.html Normal file
View File

@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team Manager - Bundesliga & Champions League</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>⚽ Team Manager</h1>
<p>Erstelle deine Teams für Bundesliga und Champions League</p>
</header>
<div class="groups-container">
<!-- Bundesliga -->
<section class="group">
<h2>🇩🇪 Bundesliga</h2>
<div class="form-group">
<input type="text" id="bundesliga-name" placeholder="Team Name" maxlength="50">
<input type="text" id="bundesliga-chant" placeholder="Schlachtruf" maxlength="100">
<button onclick="addTeam('bundesliga')">Team hinzufügen</button>
</div>
<div id="bundesliga-teams" class="teams-list"></div>
</section>
<!-- Champions League -->
<section class="group">
<h2>🏆 Champions League</h2>
<div class="form-group">
<input type="text" id="championsleague-name" placeholder="Team Name" maxlength="50">
<input type="text" id="championsleague-chant" placeholder="Schlachtruf" maxlength="100">
<button onclick="addTeam('championsleague')">Team hinzufügen</button>
</div>
<div id="championsleague-teams" class="teams-list"></div>
</section>
</div>
<button id="reset-btn" onclick="resetAll()" class="reset-button">Alle Teams löschen</button>
</div>
<script src="script.js"></script>
</body>
</html>