-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTodoForm.html
More file actions
38 lines (35 loc) · 1.69 KB
/
TodoForm.html
File metadata and controls
38 lines (35 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List</title>
<link rel="stylesheet" href="/CSS/TodoForm.css">
<script defer src="/JS/TodoForm.js" ></script>
</head>
<body>
<div id='todoform' class='todoform'>
<div id="todoform-heading" class="todoform-heading">ADD TODO LIST </div>
<input class='todoform-input' required type="text" value="ru" placeholder='Add Task...' />
<div class='todoform-label-heading'>Start Date : </div>
<input id="todoform-start-date" class='todoform-date ' value="2022-01-01" required type="date" date-format=' DD MM YYYY' />
<div class='todoform-label-heading'>End Date : </div>
<input id="todoform-end-date" class='todoform-date' value="2022-01-02" required type="date" />
<div class="todoform-label-heading">
<label for="Priority">Priority </label>
<select class="todoform-select" >
<option value="High">High</option>
<option value="Low">Low</option>
</select>
</div>
<textarea class="todoform-textarea" cols="30" rows="5" placeholder='Add Comments...' ></textarea>
<button id="addTask" onclick="showResults()" class='todoform-button' >Add Task</button>
<button class='todoform-button' onclick="todoListPage()" >Todo List</button>
<button class='todoform-button' onclick="newFormatPage()" >New Format</button>
<div id="todoform-message">
<div></div>
</div>
</div>
</body>
</html>