Init
This commit is contained in:
45
app/index.html
Normal file
45
app/index.html
Normal 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>
|
||||
Reference in New Issue
Block a user