|
|
|
@ -14,28 +14,27 @@
|
|
|
|
|
|
|
|
|
|
<h2>Ajouter une tâche</h2>
|
|
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
<form method="POST" name="addTask" id="addTask">
|
|
|
|
|
|
|
|
|
|
<div class="group">
|
|
|
|
|
<input type="text" name="name" required>
|
|
|
|
|
<input type="text" name="name" placeholder="Task 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>
|
|
|
|
|
<input type="text" name="content" placeholder="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>
|
|
|
|
|
<input type="checkbox" name="completed"></input>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<input type="submit"/>
|
|
|
|
|
<input type="submit" value="Submit"/>
|
|
|
|
|
<input type="hidden" name="action" value="addTask"/>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|