This commit is contained in:
Noel Thomy
2024-10-22 00:29:04 +04:00
2 changed files with 136 additions and 98 deletions
+24 -19
View File
@@ -1,16 +1,22 @@
<html>
<head>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liste élèves</title>
<!-- Bootstrat css cdn -->
<!-- Bootstrap CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<!-- DataTables CSS -->
<link href="https://cdn.datatables.net/v/dt/dt-2.1.8/datatables.min.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col-2">
<br>
<img src="img.png"/>
<img src="img.png" alt="Logo" class="img-fluid"/>
</div>
<div class="col-6">
<h1>CENTRE DE</h1>
@@ -20,8 +26,7 @@
<div class="col-4">
<br>
<button type="button" class="btn btn-warning">DEMANDE DE DEVIS</button>
<br>
<br>
<br><br>
<button type="button" class="btn btn-warning">DÉCOUVREZ NOTRE ÉCOLE</button>
</div>
</div>
@@ -50,13 +55,9 @@
</div>
</header>
<body>
<br>
<div class="container">
<div class="container mt-4">
<h1>Liste des élèves de CDA8</h1>
</div>
<div class="container">
<table class="table">
<table class="table" id="matable">
<thead>
<tr>
<th>Nom</th>
@@ -120,17 +121,21 @@
<td>DUCAUROY</td>
<td>Lou</td>
</tr>
</tbody>
</table>
</div>
<!-- jquery cdn -->
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<!-- Js cdn -->
<!-- DataTables JS -->
<script src="https://cdn.datatables.net/v/dt/dt-2.1.8/datatables.min.js"></script>
<script>
$(document).ready(function () {
$('#matable').DataTable(); // Corrigé la méthode ici
});
</script>
<!-- Bootstrap JS CDN -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
</body>
</body>
</html>
+33
View File
@@ -0,0 +1,33 @@
@echo off
setlocal
:: Ajouter tous les fichiers
git add *
if errorlevel 1 (
echo Erreur lors de l'ajout des fichiers.
exit /b 1
)
:: Commit avec un message
git commit -m "emjy"
if errorlevel 1 (
echo Erreur lors du commit.
exit /b 1
)
:: Tirer les dernières modifications
git pull
if errorlevel 1 (
echo Erreur lors du pull.
exit /b 1
)
:: Pousser les modifications
git push
if errorlevel 1 (
echo Erreur lors du push.
exit /b 1
)
echo Les commandes Git ont été exécutées avec succès.
endlocal