35 lines
935 B
HTML
35 lines
935 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf8">
|
||
|
<link rel="stylesheet" href="style.css" />
|
||
|
</head>
|
||
|
<body ng-app="Todos">
|
||
|
<div class="container" ng-controller="MainCtrl">
|
||
|
<h1><img class="logo" src="img/vanilla.png" /> (Not) Vanilla Todos</h1>
|
||
|
<div id="vanilla-todos">
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Mes tâches</th>
|
||
|
<th>Actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody class="todos-list">
|
||
|
<!-- Listing des todos -->
|
||
|
</tbody>
|
||
|
<tfoot>
|
||
|
<tr>
|
||
|
<td colspan="2">
|
||
|
<!-- Champ de création d'une nouvelle todo -->
|
||
|
<input class="new-todo" type="text" />
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tfoot>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="../node_modules/angular/angular.js"></script>
|
||
|
<script src="todos.js"></script>
|
||
|
</body>
|
||
|
</html>
|