2024-10-03 14:41:01 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Information du portefeuille</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">
|
2024-10-04 17:14:30 +02:00
|
|
|
<a href="index.html" class="w3-bar-item w3-button w3-left w3-border w3-border-black w3-round-xlarge w3-margin-bottom">Retour</a>
|
2024-10-03 14:41:01 +02:00
|
|
|
<h2 class="w3-bar-item w3-display-topmiddle">Information du portefeuille</h2>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<!-- Détails du portefeuille -->
|
|
|
|
|
<div class="w3-card w3-margin">
|
|
|
|
|
<div class="w3-container w3-padding">
|
|
|
|
|
<h3>Nom du portefeuille</h3>
|
|
|
|
|
<p><strong>Nom du manager :</strong> ...</p>
|
|
|
|
|
<p><strong>Prénom du manager :</strong> ...</p>
|
|
|
|
|
<p><strong>Mail du manager :</strong> ...</p>
|
|
|
|
|
<p><strong>Nom du responsable de portefeuille :</strong> ...</p>
|
|
|
|
|
<p><strong>Prénom du responsable :</strong> ...</p>
|
|
|
|
|
<p><strong>Mail du responsable :</strong> ...</p>
|
|
|
|
|
|
|
|
|
|
<!-- Liste des employés et clients -->
|
|
|
|
|
<nav style="display: flex;">
|
|
|
|
|
<div class="w3-padding" style="display: flex;flex-direction: column;">
|
|
|
|
|
<label for="employes">Employés :</label>
|
|
|
|
|
<select id="employes" class="w3-select" name="employes">
|
|
|
|
|
<option value="">Liste des employés</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w3-padding" style="display: flex;flex-direction: column;">
|
|
|
|
|
<label for="ajouter">Ajouter :</label>
|
|
|
|
|
<select id="ajouter" class="w3-select" name="ajouter">
|
|
|
|
|
<option value="">Liste des employés</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w3-padding" style="display: flex;flex-direction: column;">
|
|
|
|
|
<label for="supprimer">Supprimer :</label>
|
|
|
|
|
<select id="supprimer" class="w3-select" name="supprimer">
|
|
|
|
|
<option value="">Liste des employés</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<nav style="display: flex;">
|
|
|
|
|
<div class="w3-padding" style="display: flex;flex-direction: column;">
|
|
|
|
|
<label for="clients" class="w3-margin-top">Clients :</label>
|
|
|
|
|
<select id="clients" class="w3-select" name="clients">
|
|
|
|
|
<option value="">Liste des clients</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w3-padding" style="display: flex;flex-direction: column;">
|
|
|
|
|
<label for="ajouter" class="w3-margin-top">Ajouter :</label>
|
|
|
|
|
<select id="ajouter" class="w3-select" name="ajouter">
|
|
|
|
|
<option value="">Liste des clients</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w3-padding" style="display: flex;flex-direction: column;">
|
|
|
|
|
<label for="supprimer" class="w3-margin-top">Supprimer :</label>
|
|
|
|
|
<select id="supprimer" class="w3-select" name="supprimer">
|
|
|
|
|
<option value="">Liste des clients</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|