82 lines
4.5 KiB
HTML
82 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Gestion des portefeuilles</title>
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Conteneur principal -->
|
|
<div class="w3-container">
|
|
<header class="w3-bar w3-light-grey w3-padding">
|
|
<!-- Bouton Mon profil à gauche -->
|
|
<button class="w3-bar-item w3-button w3-left w3-border w3-border-black w3-round-xlarge w3-margin-bottom">Mon profil</button>
|
|
<!-- Titre centré -->
|
|
<h2 class="w3-bar-item w3-display-topmiddle w3-round-xlarge">Gestion des portefeuilles</h2>
|
|
<!-- Bouton Déconnexion décoratif à droite -->
|
|
<span class="w3-bar-item w3-right w3-button w3-border w3-border-black w3-round-xlarge w3-margin-bottom">Déconnexion</span>
|
|
</header>
|
|
|
|
<!-- Liste des portefeuilles -->
|
|
<div class="w3-container w3-padding w3-margin-top">
|
|
<h3 class="w3-center">Liste des portefeuilles</h3>
|
|
<div class="w3-container w3-padding">
|
|
<div class="w3-container w3-border w3-border-black w3-round-xlarge w3-margin-bottom" style="display: flex; justify-content: space-between; align-items: flex-start;">
|
|
<div style="flex: 1;">
|
|
<h4>Portefeuille 1</h4>
|
|
<div class="w3-container w3-border w3-border-black w3-round-xlarge w3-margin-bottom">
|
|
<p>NomDossier: Dossier 1<br>
|
|
Description: Description du dossier 1<br>
|
|
Num_Equip: 12345</p>
|
|
</div>
|
|
</div>
|
|
<div class="w3-right" style="display: flex; flex-direction: column;">
|
|
<button class="w3-button w3-blue w3-margin-bottom w3-margin-top w3-margin-left w3-round-xlarge" onclick="location.href='responsable_info_portefeuille.html'">Voir les détails</button>
|
|
<button class="w3-button w3-red w3-margin-bottom w3-margin-top w3-margin-left w3-round-xlarge" onclick="document.getElementById('deleteModal').style.display='block'">Supprimer</button>
|
|
</div>
|
|
</div>
|
|
<div class="w3-container w3-border w3-border-black w3-round-xlarge w3-margin-bottom" style="display: flex; justify-content: space-between; align-items: flex-start;">
|
|
<div style="flex: 1;">
|
|
<h4>Portefeuille 2</h4>
|
|
<div class="w3-container w3-border w3-border-black w3-round-xlarge w3-margin-bottom">
|
|
<p>NomDossier: Dossier 2<br>
|
|
Description: Description du dossier 2<br>
|
|
Num_Equip: 67890</p>
|
|
</div>
|
|
</div>
|
|
<div class="w3-right" style="display: flex; flex-direction: column;">
|
|
<button class="w3-button w3-blue w3-margin-bottom w3-margin-top w3-margin-left w3-round-xlarge" onclick="location.href='responsable_info_portefeuille.html'">Voir les détails</button>
|
|
<button class="w3-button w3-red w3-margin-bottom w3-margin-top w3-margin-left w3-round-xlarge" onclick="document.getElementById('deleteModal').style.display='block'">Supprimer</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Pop-up de confirmation pour suppression -->
|
|
<div id="deleteModal" class="w3-modal">
|
|
<div class="w3-modal-content w3-animate-top w3-card">
|
|
<header class="w3-container w3-red">
|
|
<h2>Confirmation</h2>
|
|
</header>
|
|
<div class="w3-container">
|
|
<p>Quel client doit être supprimé ?</p>
|
|
<label for="clientList">Liste des clients du portefeuille:</label>
|
|
<select id="clientList" class="w3-select w3-border">
|
|
<option value="" disabled selected>Choisissez un client</option>
|
|
<option value="client1">Client 1</option>
|
|
<option value="client2">Client 2</option>
|
|
<option value="client3">Client 3</option>
|
|
</select>
|
|
</div>
|
|
<footer class="w3-container w3-padding">
|
|
<button class="w3-button w3-red w3-round-xlarge" onclick="document.getElementById('deleteModal').style.display='none'">Annuler</button>
|
|
<button class="w3-button w3-green w3-round-xlarge" onclick="document.getElementById('deleteModal').style.display='none'">Confirmer</button>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|