2019-10-10 20:37:39 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<title>TODO Application</title>
|
|
|
|
<link rel="stylesheet" href="css/reset.css">
|
|
|
|
<link rel="stylesheet" href="css/style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<input type="text" placeholder="Wprowadź nazwę zadania" id="item">
|
|
|
|
<button id="add">
|
|
|
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"> <g> <path class="fill" d="M16,8c0,0.5-0.5,1-1,1H9v6c0,0.5-0.5,1-1,1s-1-0.5-1-1V9H1C0.5,9,0,8.5,0,8s0.5-1,1-1h6V1c0-0.5,0.5-1,1-1 s1,0.5,1,1v6h6C15.5,7,16,7.5,16,8z"/> </g> </svg>
|
|
|
|
</button>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<!-- Uncompleted tasks -->
|
|
|
|
<h2>Nieskończone</h2>
|
|
|
|
<ul class="todo" id="todo"></ul>
|
|
|
|
|
|
|
|
<!-- Completed tasks -->
|
2019-10-11 18:29:56 +02:00
|
|
|
<h2>Zadania dokończone</h2>
|
2019-10-10 20:37:39 +02:00
|
|
|
<ul class="todo" id="completed"></ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
<script src="js/main.js"></script>
|
|
|
|
</html>
|