forked from jvwilder/bloxs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewSchedule.html
executable file
·176 lines (128 loc) · 5.16 KB
/
newSchedule.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<html>
<head>
<meta charset="utf-8">
<link href="font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<title>
</title>
<style type="text/css">
</style>
<script type="text/javascript">
</script>
</head>
<body>
<input type="checkbox" id="menuShowHide">
<label for="menuShowHide"><i class="fa fa-bars" aria-hidden="true"></i></label>
<input type="checkbox" id="menuShowHideSmall">
<label for="menuShowHideSmall"><i class="fa fa-bars" aria-hidden="true"></i></label>
<div id="header">
<div id="brand">
<a href="index.html"><i class="fa fa-puzzle-piece" aria-hidden="true"></i> Bloxs</a>
</div>
<div id="title">
<a href="scripts.html">Scripts</a> ⟩ New schedule
</div>
</div>
<div id="body">
<div id="drawer-container">
<div id="drawer">
<div id="user">
<a href="#"><i class="fa fa-user" aria-hidden="true"></i> Robin De Pril <i class="fa fa-caret-down" aria-hidden="true"></i></a>
</div>
<div id="mainMenu">
<a href="index.html"><i class="fa fa-tachometer" aria-hidden="true"></i> Overview</a>
<a href="scripts.html" class="current"><i class="fa fa-th-large" aria-hidden="true"></i> Scripts</a>
<a href="planning.html"><i class="fa fa-calendar" aria-hidden="true"></i> Planning</a>
<a href="users.html"><i class="fa fa-users" aria-hidden="true"></i> People</a>
</div>
</div>
</div>
<div id="content-container">
<div id="content">
<div class="content">
<!-- <div class="actionbar">
<a href="#" class="button">
<span><i class="fa fa-calendar"></i> Make schedule (slow)</span>
</a>
<a href="#" class="button">
<span><i class="fa fa-calendar"></i> Update schedule (quick)</span>
</a>
</div>-->
<h2>Select the scripts for the new schedule</h2>
<div class="rule">
<span>
Basic week schedule </span>
<label class="switch no-label">
<input type="checkbox" class="switch-input" checked>
<span class="switch-trough" data-on="On" data-off="Off"></span>
<span class="switch-handle"></span>
</label>
</div>
<div class="rule">
<span>Labor regulations limiting work hours
</span>
<label class="switch no-label">
<input type="checkbox" class="switch-input" checked>
<span class="switch-trough" data-on="On" data-off="Off"></span>
<span class="switch-handle"></span>
</label>
</div>
<div class="rule">
<span>Belgian holidays
</span>
<label class="switch no-label">
<input type="checkbox" class="switch-input" checked>
<span class="switch-trough" data-on="On" data-off="Off"></span>
<span class="switch-handle"></span>
</label>
</div>
<div class="rule">
<span>Exceptions department 6A
</span>
<label class="switch no-label">
<input type="checkbox" class="switch-input" checked>
<span class="switch-trough" data-on="On" data-off="Off"></span>
<span class="switch-handle"></span>
</label>
</div>
<div class="rule">
<span>National state of emergency rules
</span>
<label class="switch no-label">
<input type="checkbox" class="switch-input" checked>
<span class="switch-trough" data-on="On" data-off="Off"></span>
<span class="switch-handle"></span>
</label>
</div>
<div class="rule">
<span>Night shifts
</span>
<label class="switch no-label">
<input type="checkbox" class="switch-input" checked>
<span class="switch-trough" data-on="On" data-off="Off"></span>
<span class="switch-handle"></span>
</label>
</div>
<div class="rule">
<span>Cleaning staff rules
</span>
<label class="switch no-label">
<input type="checkbox" class="switch-input" checked>
<span class="switch-trough" data-on="On" data-off="Off"></span>
<span class="switch-handle"></span>
</label>
</div>
<div class="actionbar">
<a href="scripts.html" class="button" style="background-color:#b32323">
<span><i class="fa fa-times" aria-hidden="true"></i> Cancel</span>
</a>
<a href="scripts.html" class="button">
<span><i class="fa fa-check"></i> OK</span>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>