-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 3.32 KB
/
index.html
File metadata and controls
71 lines (71 loc) · 3.32 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
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
<DOCTYPE html>
<html>
<head>
<link href="static/css/main.css" rel="stylesheet" type="text/css"/>
<script src="static/js/bundle.js"></script>
</head>
<body>
<div class="module-scheduler-form">
<div class="sd-card general-form sd-elevation-2">
<input type="text" id="schedule-name" placeholder="Schedule name"></input>
<div class="side-by-side">
<div class="field-group">
<input id="start-date" type="date" placeholder="Start date"></input>
<label for="start-date">Start date</label>
</div>
<div class="field-group">
<input id="end-date" type="date" placeholder="End date"></input>
<label for="end-date">End date</label>
</div>
</div>
<div class="side-by-side">
<div class="field-group">
<input id="break-start-date" type="date" placeholder="Break start date"></input>
<label for="break-start-date">Break start date</label>
</div>
<div class="field-group">
<input id="break-end-date" type="date" placeholder="Break end date"></input>
<label for="break-end-date">Break end date</label>
</div>
</div>
</div>
<div class="form-container"></div>
<div class="row-button-wrapper outside-form center">
<button class="sd-button js-add-person-button">Add +</button>
<button class="hide sd-button js-submit-button">Generate schedule</button>
</div>
</div>
<div class="module-scheduler-schedule hide">
<div class="schedule-card sd-card sd-elevation-2">
<div class="table-wrapper">
<table class="schedule-table">
<tr>
<th>Date</th>
<th>Name</th>
<th>Fits Requirements</th>
</tr>
<tbody class="schedule-table-body"></tbody>
</table>
</div>
</div>
<div class="schedule-card sd-card sd-elevation-2 analysis-card hide">
<div class="table-wrapper">
<table class="analysis-table">
<tr>
<th>Name</th>
<th>Number of weekdays</th>
<th>Number of weekends</th>
</tr>
<tbody class="analysis-table-body"></tbody>
</table>
</div>
</div>
<div class="row-button-wrapper outside-form center">
<button class="sd-button small-button js-start-new-button">Start new schedule</button>
<button class="sd-button small-button js-rerun-button">Redo schedule</button>
<button class="sd-button small-button js-analyze-button">Analyze schedule</button>
<button class="sd-button small-button js-download-button">Download schedule</button>
</div>
</div>
</body>
</html>