37 lines
1,020 B
HTML
37 lines
1,020 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Pangloss</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<!-- barre de commandes -->
|
|
<h2>Nouvelle tâche</h2>
|
|
<hr>
|
|
<label for="nom">Nom de la tâche</label>
|
|
<input type="text" id="nom" name ="nom"/>
|
|
<label for="duree">Durée de la tâche (en h)</label>
|
|
<input type="number" id="duree" name ="duree"/>
|
|
<button type="button" onclick="createtask()">Créer</button>
|
|
|
|
<div class="separateur"></div>
|
|
|
|
|
|
<h2>
|
|
Trier par
|
|
</h2>
|
|
<hr>
|
|
<button type="button" onclick="triduree">Durée (décroissant)</button>
|
|
</nav>
|
|
<!-- fin barre de commandes -->
|
|
|
|
<div id = "conteneur">
|
|
<!-- Les tâches sont ajoutées ici via javascript -->
|
|
|
|
</div>
|
|
</body>
|
|
</html> |