Site du proximo, utilisé pour gérer le stock.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 1019B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. $relativePath = "../";
  3. ob_start();
  4. ?>
  5. <div class="admin-container" style="display: flex">
  6. <div style="margin: auto">
  7. <div style="display: flex" class="my-5">
  8. <a href="stock.php" style="margin: auto">
  9. <button class="btn btn-primary btn-lg">Gestion du stocks</button>
  10. </a>
  11. </div>
  12. <div class="my-5" style="display: flex">
  13. <a href="articles.php" style="margin: auto" class="mx-1">
  14. <button class="btn btn-primary btn-lg">Créer/Éditer des articles</button>
  15. </a>
  16. <a href="categories.php" style="margin: auto" class="mx-1">
  17. <button class="btn btn-primary btn-lg">Créer/Éditer des catégories</button>
  18. </a>
  19. </div>
  20. </div>
  21. </div>
  22. <link type="text/css" rel="stylesheet" href="<?= $relativePath ?>assets/css/admin.css" media="screen,projection"/>
  23. <?php
  24. $pageContent = ob_get_clean();
  25. $pageTitle = "Admin";
  26. include($relativePath . "includes/template.php");
  27. ?>