Add more info and contact on index
This commit is contained in:
parent
bfa1319b27
commit
1e2e0134ba
2 changed files with 58 additions and 16 deletions
|
@ -3,14 +3,24 @@ $relativePath = "../";
|
||||||
ob_start();
|
ob_start();
|
||||||
?>
|
?>
|
||||||
<div class="admin-container" style="display: flex">
|
<div class="admin-container" style="display: flex">
|
||||||
<div style="margin: auto">
|
<div class="my-5" style="margin: auto">
|
||||||
<div style="display: flex" class="my-5">
|
<div class="border p-2">
|
||||||
|
<p style="text-align: center">Modifier la quantité disponible de chaque article en stock</p>
|
||||||
|
<div style="display: flex">
|
||||||
<a href="stock.php" style="margin: auto">
|
<a href="stock.php" style="margin: auto">
|
||||||
<button class="btn btn-success btn-lg">Gestion du stocks</button>
|
<button class="btn btn-success btn-lg">Gestion du stocks</button>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="my-5" style="display: flex">
|
<div class="border p-2 mt-2">
|
||||||
|
<p style="text-align: center">
|
||||||
|
Créer des articles et des catégories d'articles.
|
||||||
|
<br/>
|
||||||
|
C'est ici que tu peux choisir le nom, la description, l'image le code et autre pour chaque article.
|
||||||
|
</p>
|
||||||
|
<div style="display: flex">
|
||||||
|
<div style="margin: auto">
|
||||||
<a href="articles.php" style="margin: auto" class="mx-1">
|
<a href="articles.php" style="margin: auto" class="mx-1">
|
||||||
<button class="btn btn-primary btn-lg">Créer/Éditer des articles</button>
|
<button class="btn btn-primary btn-lg">Créer/Éditer des articles</button>
|
||||||
</a>
|
</a>
|
||||||
|
@ -19,11 +29,32 @@ ob_start();
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="display: flex" class="my-5">
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="border p-2 mt-2">
|
||||||
|
<p style="text-align: center">
|
||||||
|
Rendre l'inventaire publique.
|
||||||
|
<br/>
|
||||||
|
Mettre en ligne l'inventaire permet aux étudiants d'y avoir accès en utilisant l'appli Campus.
|
||||||
|
</p>
|
||||||
|
<div style="display: flex">
|
||||||
<button id="uploadButton" class="btn btn-warning btn-lg" style="margin: auto">Mettre l'inventaire en ligne
|
<button id="uploadButton" class="btn btn-warning btn-lg" style="margin: auto">Mettre l'inventaire en ligne
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="border p-2 mt-2">
|
||||||
|
<p style="text-align: center">
|
||||||
|
<strong>Un problème ?</strong>
|
||||||
|
<br/>
|
||||||
|
Tu peux contacter le développeur de ce site si jamais tu rencontres des problèmes.
|
||||||
|
</p>
|
||||||
|
<div style="display: flex">
|
||||||
|
<button id="errorButton" class="btn btn-danger btn-lg" style="margin: auto">
|
||||||
|
Contacter le développeur
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<link type="text/css" rel="stylesheet" href="<?= $relativePath ?>assets/css/admin.css" media="screen,projection"/>
|
<link type="text/css" rel="stylesheet" href="<?= $relativePath ?>assets/css/admin.css" media="screen,projection"/>
|
||||||
|
|
|
@ -44,3 +44,14 @@ $('#uploadButton').on('click', function () {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#errorButton').on('click', function () {
|
||||||
|
$.confirm({
|
||||||
|
title: 'Contacter le développeur',
|
||||||
|
content: "Choisis le moyen de contact que tu souhaites :<br/>" +
|
||||||
|
"<ul>" +
|
||||||
|
"<li><strong>Mail: </strong><a href='mailto:vergnet@etud.insa-toulouse.fr'>vergnet@etud.insa-toulouse.fr</a></li>" +
|
||||||
|
"<li><strong>Facebook: </strong><a href='https://www.facebook.com/arnaud.vergnet/' target='_blank'>Arnaud Vergnet</a></li>" +
|
||||||
|
"</ul>"
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in a new issue