Corrections typo + exo VanillaTodos complet

This commit is contained in:
2015-04-01 15:11:13 +02:00
parent 16cf72bb59
commit 9a2452b334
8 changed files with 121 additions and 17 deletions

View File

@ -1,32 +1,33 @@
<html>
<head>
<meta charset="utf8">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Vanilla Todos</h1>
<h1><img class="logo" src="../../img/vanilla.png" /> Vanilla Todos</h1>
<div id="vanilla-todos">
<table>
<thead>
<tr>
<th colspan="2">
<input class="search-todos" type="text" placeholder="Filter todos..." />
<input class="search-todos" type="text" placeholder="Filtrer les tâches..." />
</th>
</tr>
<tr>
<th>Todo</th>
<th>Mes tâches</th>
<th>Actions</th>
</tr>
</thead>
<tbody class="todos-list">
<tr>
<td colspan="2">Aucune todo pour le moment !</td>
<td colspan="2" class="no-todo">Pas de tâches pour le moment !</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">
<input class="new-todo" type="text" />
<input class="new-todo" type="text" placeholder="Créer une nouvelle tâche..."/>
</td>
</tr>
</tfoot>