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.

43 lines
832 B

<!DOCTYPE html>
<html>
<head>
<title>Ajouter une Tache</title>
<link rel="stylesheet" href="Style/bootstrap.css">
<link rel="stylesheet" href="Style/add.css">
</head>
<body>
<div class="container">
<h2>Ajouter une tâche</h2>
<form>
<div class="group">
<input type="text" name="name" required>
<span class="highlight"></span>
<span class="bar"></span>
<label>Nom de la tâche</label>
</div>
<div class="group">
<input type="text" name="content" required>
<span class="highlight"></span>
<span class="bar"></span>
<label>Content</label>
</div>
<div class="check">
<text>Complete</text>
<input type="checkbox" name="cpl"></input>
</div>
<input type="submit"/>
</form>
</div>
</body>