index OK db
This commit is contained in:
92
index.html
92
index.html
@@ -1,92 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Liste d'Équipes</title>
|
||||
<!-- Bootstrap CSS (via CDN) -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
||||
<style>
|
||||
body {
|
||||
background-color: #ffffff; /* Fond blanc */
|
||||
color: #000000; /* Text color */
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.header {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.logo {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
}
|
||||
.header-links {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.header-links a {
|
||||
color: #000000;
|
||||
margin-right: 20px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
.header-links a:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
.container {
|
||||
background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), /* White faded background */
|
||||
linear-gradient(to right, #0C2340, #1D428A, #006BB6); /* Background for the content */
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.list-group-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background-color: #1D428A;
|
||||
color: #ffffff; /* Text color for list items */
|
||||
border: none; /* Remove border */
|
||||
margin-bottom: 5px; /* Adjust spacing between list items */
|
||||
}
|
||||
.button-group button {
|
||||
margin-right: 5px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<img src="static/Logo-NBA.png" alt="Logo NBA" class="logo">
|
||||
<div class="header-links">
|
||||
<a href="#">Accueil</a>
|
||||
<a href="autre-page1.html">Autre Page 1</a>
|
||||
<a href="autre-page2.html">Autre Page 2</a>
|
||||
<!-- Ajoutez plus de liens au besoin -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<h1 class="text-center mb-4">Liste d'Équipes</h1>
|
||||
<input type="text" id="searchInput" class="form-control mb-4" placeholder="Rechercher une équipe..." oninput="filterTeams()">
|
||||
<ul id="teamList" class="list-group">
|
||||
<li class="list-group-item">
|
||||
Équipe 1
|
||||
<div class="button-group">
|
||||
<button class="btn btn-success" onclick="ajouterEquipe(0)">+</button>
|
||||
<button class="btn btn-danger" onclick="enleverEquipe(0)">-</button>
|
||||
</div>
|
||||
</li>
|
||||
<!-- Ajoutez plus d'équipes au besoin -->
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Bootstrap JS, Popper.js, and jQuery (via CDN) -->
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user