-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
39 lines (31 loc) · 677 Bytes
/
index.php
File metadata and controls
39 lines (31 loc) · 677 Bytes
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
<?php
require("controller.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>Design</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./vanila.css">
</head>
<body>
<div id="header">
<h1>Project ToDo</h1>
</div>
<div id="body">
<?php
printLists();
?>
<br>
<form action="insert_list.php" method="post">
<input type="text" name="name">
<input type="submit" value="Create list">
</form>
<br>
</div>
<div id="footer">
<h2>Rostyslav Bornitskyi | Test task</h2>
</div>
</body>
</html>
<script type="text/javascript" src="script.js"></script>