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>Création de portefeuille</title>
|
|
|
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<div class="w3-container">
|
|
|
|
|
<header class="w3-bar w3-light-grey w3-padding">
|
|
|
|
|
<nav class="w3-left" style="display: flex;flex-direction: column;">
|
|
|
|
|
<button class="w3-bar-item w3-button w3-border w3-border-black w3-round-xlarge w3-margin-bottom" onclick="location.href='manager_gestion_portefeuilles.html'">Profil</button>
|
|
|
|
|
<button class="w3-button w3-border w3-border-black w3-round-xlarge w3-margin-bottom" onclick="location.href='manager_liste_employes.html'">Accès des employés</button>
|
|
|
|
|
<button class="w3-button w3-yellow w3-border w3-border-black w3-round-xlarge w3-margin-bottom">Créer des portefeuilles</button>
|
|
|
|
|
</nav>
|
|
|
|
|
<h2 class="w3-bar-item w3-display-topmiddle">Liste des employés</h2>
|
|
|
|
|
<span class="w3-bar-item w3-right w3-button w3-border w3-border-black w3-border w3-round-xlarge w3-margin-bottom">Déconnexion</span>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<div class="w3-container w3-padding w3-margin-top">
|
|
|
|
|
<h3 class="w3-center">Créer un nouveau portefeuille</h3>
|
|
|
|
|
<form class="w3-container">
|
|
|
|
|
<label for="portfolioName">Nom du portefeuille :</label>
|
|
|
|
|
<input class="w3-input w3-border" type="text" id="portfolioName" required>
|
2024-10-03 15:09:11 +02:00
|
|
|
<label for="Fichier">Ajout de fichiers :</label>
|
|
|
|
|
<select id="Fichier" class="w3-select" name="Fichier">
|
|
|
|
|
<option value="">Liste des fichiers</option>
|
|
|
|
|
</select>
|
|
|
|
|
<label for="Resp">Responsable de portefeuille :</label>
|
|
|
|
|
<select id="Resp" class="w3-select" name="Resp">
|
|
|
|
|
<option value="">Liste des responsable</option>
|
|
|
|
|
</select>
|
|
|
|
|
<label for="Emp">Employés :</label>
|
|
|
|
|
<select id="Emp" class="w3-select" name="Emp">
|
|
|
|
|
<option value="">Liste des employés</option>
|
|
|
|
|
</select>
|
|
|
|
|
<label for="Clients">Client :</label>
|
|
|
|
|
<select id="Clients" class="w3-select" name="Clients">
|
|
|
|
|
<option value="">Liste des clients</option>
|
|
|
|
|
</select>
|
2024-10-03 14:41:01 +02:00
|
|
|
<button class="w3-button w3-green w3-margin-top w3-round-xlarge">Créer</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|