-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
47 lines (27 loc) · 856 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<?php include("../inc/meta.php") ?>
<link rel="stylesheet" href="style.css" type="text/css">
<title>To Do App</title>
<?php include("../inc/header.php") ?>
<h1><span>To Do App</span></h1>
</div>
<div id="canvas" class="container group">
<div id="primaryContent" class="group">
<form id="taskForm">
<input id="taskInput" type="text" autocomplete="off">
<button>Create A Task</button>
</form>
<h3>My To Do List</h3>
<ul id="taskList">
</ul>
</div> <!-- main content -->
<!--
<div id="secondaryContent">
</div><!-- right col content -->
</div>
<?php include("../inc/footer.php") ?>
<script src="script.js"></script>
</body>
</html>