You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
731 B

<!DOCTYPE html>
<html>
<head>
<title>Ajouter une Tache</title>
<link rel="stylesheet" href="../Style/bootstrap.css">
<link rel="stylesheet" href="../Style/mycoolstyle.css">
</head>
<body>
<ul class="navbar">
<li><button onclick="location.href='addList.html'" type="button" class="addList">Ajouter une Liste</button>
<li><button onclick="location.href='addTask.html'" type="button" class="addTask">Ajouter une Tache</button>
</ul>
<h1>Ajouter</h1>
<input type="text" id="name" name="name" placeholder="name">
<br>
<input type="text" id="content" name="content" placeholder="content">
<br>
<button class="valider" onclick="location.href='page.html'">Valider</button>
</body>