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 544B

1234567891011121314151617181920
  1. <?php
  2. $relativePath = "../";
  3. ob_start();
  4. ?>
  5. <div class="admin-container">
  6. <a href="stock.php">
  7. <button class="btn btn-primary btn-large">Gestion des stocks</button>
  8. </a>
  9. <a href="categories.php">
  10. <button class="btn btn-primary btn-large">Gestion des catégories</button>
  11. </a>
  12. </div>
  13. <link type="text/css" rel="stylesheet" href="<?= $relativePath ?>assets/css/admin.css" media="screen,projection"/>
  14. <?php
  15. $pageContent = ob_get_clean();
  16. $pageTitle = "Admin";
  17. include($relativePath . "includes/template.php");
  18. ?>