Files
PreprojetIHMFI2024/Site Manager/manager_creation_portefeuille.html

37 lines
1.8 KiB
HTML

<!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>
<label for="portfolioDescription">Description :</label>
<input class="w3-input w3-border" type="text" id="portfolioDescription" required>
<button class="w3-button w3-green w3-margin-top w3-round-xlarge">Créer</button>
</form>
</div>
</div>
</body>
</html>