diff --git a/assets/css/style.css b/assets/css/style.css
index 9038f3f..46fea50 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -87,6 +87,20 @@
display: flex;
flex-wrap: wrap;
}
+
+.ok_button {
+ width: 49%;
+ background-color: green;
+ border: none;
+ margin-left: 2%;
+ color: white;
+}
+.cancel_button {
+ width: 49%;
+ background-color: red;
+ border: none;
+ color: white;
+}
.grid > * {
flex-basis: 100%;
max-width: 100%;
diff --git a/index.html b/index.html
index bfb22ea..171f21f 100644
--- a/index.html
+++ b/index.html
@@ -9,7 +9,7 @@
-
+
@@ -92,13 +92,23 @@
domElement.style.top = posY + "px";
domElement.style.visibility = "visible";
- var innerHTML = appointment.name;
- innerHTML += `
`;
- innerHTML += `
`;
- innerHTML += "
"
- innerHTML += "
";
+ var innerHTML = "";
+ innerHTML += '
";
+
+ innerHTML += `
`;
+ innerHTML += `
`;
+ innerHTML += "
"
+ innerHTML += "
";
domElement.innerHTML = innerHTML;
}
+ process_task_scheduler = function() {
+ var domElement = document.getElementById("task_schdeuler_dialogue").style.visibility = "hidden";
+ alert("Schedule Task")
+ }
class TaskList {
constructor(task_list){