Merge branch 'main' into laura

This commit is contained in:
Yass 2026-01-28 10:14:19 +01:00 committed by GitHub
commit c228a548dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 25 additions and 5 deletions

View file

@ -41,4 +41,4 @@
include('../app/views/partials/footer.php');
}
}
}

View file

@ -110,4 +110,10 @@
include('../app/views/partials/footer.php');
}
public function admin(){
include('../app/views/admin.php');
}
}

View file

@ -1,8 +1,18 @@
<body class="sb-nav-fixed">
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Dashboard - Folliow Admin</title>
<link href="https://cdn.jsdelivr.net/npm/simple-datatables@7.1.2/dist/style.min.css" rel="stylesheet" />
<link href="assests/css/styles.css" rel="stylesheet" />
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
</head>
<body class="sb-nav-fixed">
<nav class="sb-topnav navbar navbar-expand navbar-dark bg-dark">
<!-- Navbar Brand-->
<a class="navbar-brand ps-3" href="index.html"><img src="./img/Logo-Wordmark.svg" alt="Logo du site" width="150px"></a>
<a class="navbar-brand ps-3" href="index.html"><img src="assests/img/Logo-Wordmark.svg" alt="Logo du site" width="150px"></a>
<!-- Sidebar Toggle-->
<button class="btn btn-link btn-sm order-1 order-lg-0 me-4 me-lg-0" id="sidebarToggle" href="#!"><i class="fas fa-bars"></i></button>
@ -94,7 +104,7 @@
<div class="row">
<div class="col-4">
<!-- IMG USER -->
<img src="./img/Logo-Wordmark.svg" alt="" width="100">
<img src="./assests/img/Logo-Wordmark.svg" alt="" width="100">
</div>
<!-- USER MODIF -->
@ -115,4 +125,8 @@
</div>
</div>
</main>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="assests/js/scripts.js"></script>
</body>
</html>