-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskView.html
117 lines (109 loc) · 3.78 KB
/
taskView.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="homeFit.css">
<link rel="stylesheet" type="text/css" href="tasksModal.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="taskScript.js" type="text/javascript"></script>
<script>
$(function(){
$("#menu").load("navbar.html");
});
</script>
<script type="text/javascript" src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("user_woVbEmvDVrZ3fSoltxL3K");
})();
</script>
</head>
<body id="taskView">
<div id="menu"></div>
<div id="content">
<div id="sidebar">
<img src="images/houseIcon.jpg" id="icon" />
</div>
<div id="mainContent">
<div class="taskButtons">
<button id="DoorButton"></button>
<button id="ElectricalButton"></button>
<button id="ExteriorButton"></button>
</div>
<div class="taskButtons">
<button id="FloorButton"></button>
<button id="HVACButton"></button>
<button id="InteriorButton"></button>
</div>
<div class="taskButtons">
<button id="KitchenButton"></button>
<button id="PlumbingButton"></button>
<button id="RoofButton"></button>
</div>
<header id="message">You have 6 uncompleted tasks. <a href="payment.html" id="fix">Help Me Fix This</a></header>
</div>
<br>
</div>
<div id="tasksModel" class="modal" >
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close" id="close">×</span>
<h2>HVAC Tasks</h2>
</div>
<div class="modal-body">
<div class="taskBar">
<input type="checkbox" name="checkBoxName" id="checkBoxId1">
<label for="checkBoxId1" id="checkBoxLabel1">
<span id="instructions">Change Furnace Filters</span>
</label>
</div>
<div class="taskBar">
<input type="checkbox" name="checkBoxName" id="checkBoxId2">
<label for="checkBoxId2" id="checkBoxLabel2">
<span>Fireplace Maintenance & Service</span>
</label>
</div>
<div class="taskBar">
<input type="checkbox" name="checkBoxName" id="checkBoxId3">
<label for="checkBoxId3" id="checkBoxLabel3">
<span>Check and Maintain Heating System</span>
</label>
</div>
<div class="taskBar">
<input type="checkbox" name="checkBoxName" id="checkBoxId4">
<label for="checkBoxId4" id="checkBoxLabel4">
<span>Check Fireplace Dampers</span>
</label>
</div>
<div class="taskBar">
<input type="checkbox" name="checkBoxName" id="checkBoxId5">
<label for="checkBoxId5" id="checkBoxLabel5">
<span>Clean HVAC Filters</span>
</label>
</div>
<div class="taskBar">
<input type="checkbox" name="checkBoxName" id="checkBoxId6">
<label for="checkBoxId6" id="checkBoxLabel6">
<span>Check for asbestos in heating pipes</span>
</label>
</div>
</div>
<div class="modal-footer">
<span class="DoneButtonGroup">
<span class="tooltipDone">I'm done with these tasks.</span>
<button id="DoneButton"></button>
</span>
<span class="ReminderButtonGroup">
<span class="tooltipReminder">Send me a text and email reminder.</span>
<button id="ReminderButton"></button>
</span>
<span class="NotRelevantButtonGroup">
<span class="tooltipNotRelevant">Not relavant to my home.</span>
<button id="NotRelevantButton"></button>
</span>
</div>
</div>
</div>
</body>
</html>