This repository was archived by the owner on Jan 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (99 loc) · 4.33 KB
/
index.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Task Planner</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Tasks</h1>
<p><span id='date-time'></span>.</p>
<button onclick="newTask()">New Task</button>
<input type="button" value="Reset" onClick="document.location.reload(true)">
<button onclick="quotes()"> Quotes</button>
<button onclick="done()"> Done!</button>
<br>
<br>
<input id="w" type="checkbox" name="width" placeholder="Task">
<input id="w" type="text" name="width" placeholder="Task">
<input id="w" type="text" name="width" placeholder="Details">
<input id="w" type="text" name="width" placeholder="Label">
<input id="w" type="file" name="width" placeholder="Label">
<input id="w" type="date" name="width" placeholder="Task">
<input type= "color" value="#34c9eb">
<br>
<br>
<input id="w" type="checkbox" name="width" placeholder="Task">
<input id="w" type="text" name="width" placeholder="Task">
<input id="w" type="text" name="width" placeholder="Details">
<input id="w" type="text" name="width" placeholder="Label">
<input id="w" type="date" name="width" placeholder="Task">
<input type= "color" value="#34c9eb">
<br>
<br>
<input id="w" type="checkbox" name="width" placeholder="Task
4">
<input id="w" type="text" name="width" placeholder="Task">
<input id="w" type="text" name="width" placeholder="Details">
<input id="w" type="text" name="width" placeholder="Label">
<input id="w" type="date" name="width" placeholder="Task">
<input type= "color" value="#34c9eb">
<br>
<br>
<input id="w" type="checkbox" name="width" placeholder="Task">
<input id="w" type="text" name="width" placeholder="Task">
<input id="w" type="text" name="width" placeholder="Details">
<input id="w" type="text" name="width" placeholder="Label">
<input id="w" type="date" name="width" placeholder="Task">
<input type= "color" value="#34c9eb">
<br>
<br>
<script>
// var box = document.createElement("input");
var dt = new Date();
document.getElementById('date-time').innerHTML=dt;
function colorCodeOn(){
newColor = document.createElement("input");
newColor.setAttribute("type", "color");
newColor.setAttribute("value", "#34c9eb");
document.body.appendChild(newColor);
}
function quotes(){
alert("Quote1: Stay positive better days are on there way. Quote2: May your troubles be less and your blessings be more.");
prompt("Better?");
}
function done(){
alert("Congradulations! You finished all your tasks. Have fun and dont worry about anything!");
document.location.href = 'https://docs.google.com/presentation/d/1IrpLqS-52T1ih7AEy6F07g4zKxhz1_1azSyqVwE4Jf4/edit#slide=id.gdbface82a7_0_46'
}
function newTask() {
const text = document.createElement("div");
text.innerHTML = "<br />";
document.body.appendChild(text);
newInput = document.createElement("input");
newInput.setAttribute("type", "checkbox");
document.body.appendChild(newInput);
newInput = document.createElement("input");
newInput.setAttribute("type", "text");
newInput.setAttribute("placeholder", "Task");
document.body.appendChild(newInput);
newInput = document.createElement("input");
newInput.setAttribute("type", "text");
newInput.setAttribute("placeholder", "Details");
document.body.appendChild(newInput);
newInput = document.createElement("input");
newInput.setAttribute("type", "text");
newInput.setAttribute("placeholder", "Label");
document.body.appendChild(newInput);
newInput = document.createElement("input");
newInput.setAttribute("type", "date");
document.body.appendChild(newInput);
newInput = document.createElement("input");
newInput.setAttribute("type", "color");
newInput.setAttribute("value", "#34c9eb");
document.body.appendChild(newInput);
}
</script>
</body>
</html>