forked from ArtemGnatenko/JavaScript-Lectures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (59 loc) · 2.18 KB
/
index.html
File metadata and controls
65 lines (59 loc) · 2.18 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html>
<head>
<title>Lecture 18</title>
<link type="text/css" rel="stylesheet" media="all" href="css/main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/main.js" defer></script>
</head>
<body>
<!-- This is base template for testing -->
<h1 class="mainTitle">
<img class="logo" src="images/logo.png" alt=""/>
<span class="text">Lecture 18</span>
</h1>
<div class="todo-list">
<div class="usersManagement">
<div class="addUser">
<input class="userName" type="text" placeholder="User name" />
<input class="userEmail" type="text" placeholder="User email" />
<input class="addUserButton" type="button" value="Add user" />
</div>
<ul class="users">
<!--<li>
<p class="userName">Vasd</p>
<p class="userEmail">asd@asdf.sad</p>
<label for=""> Assigned <input type="checkbox" /></label>
<button type="button">Delete user</button>
</li>-->
</ul>
</div>
<div class="taskManagement">
<div class="addTask">
<input class="taskTitle" type="text" placeholder="Task title" />
<textarea class="taskDescription" name="" id="" placeholder="Task description"></textarea>
<input class="taskID" type="text" placeholder="Task ID" />
<input class="addTaskButton" type="button" value="Add task" />
</div>
<ul class="tasks">
<!--<li>-->
<!--<h2 class="taskTitle">taskTitle</h2>-->
<!--<p>Create data-->
<!--<span class="createData">-->
<!--data/month/year hours:minutes-->
<!--</span>-->
<!--</p>-->
<!--<p class="taskDescription">taskDescription</p>-->
<!--<p>Assigned to <span></span>users</p>-->
<!--<div class="">-->
<!--<button type="button">Move top</button>-->
<!--<button type="button">Move bottom</button>-->
<!--<button type="button">Delete task</button>-->
<!--</div>-->
<!--<button type="button" class="complete">Complete task</button>-->
<!--</li>-->
</ul>
</div>
</div>
</body>
</html>