46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
<!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>
|