-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunClass.html
More file actions
97 lines (74 loc) · 3.32 KB
/
Copy pathRunClass.html
File metadata and controls
97 lines (74 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<title id="title">Run class</title>
</head>
<body>
<h2 id="pageHeader" class="text-center">Run Class</h2>
<h4 id="headerSchoolName" class="text-center"></h4>
<h4 id="calendarDisplay" class="text-center"></h4>
<h4 id="runFrom" class="text-center"></h4>
<div class="container">
<div id="spinner">
<div class="spinner-border" role="status">
<span class="sr-only"> Loading School List...</span>
</div>
Loading Calendars and bell shedule
</div>
<div class="row">
<a id="configureAbScheduleAndBellScheduleForThisCalendar">Configure A/B Schedule and Bell Schedule</a>
</div>
<div class="row">
<a id="goBackToCalendarYears"> </a>
</div>
<div class="row mb-3">
<a href="index.html">Go Back to School Dashboard</a>
</div>
<button class="btn btn-info mb-3" id="cmdChangeParameters" hidden >Change Parameters</button>
<div class="card" id="parameters">
<div class="card-body">
<h5 class="card-title">Parameters</h5>
<label for="dteStartDate" class="col-form-label">Run from Date:</label>
<input type="date" class="form-control form-control-sm" id="dteStartDate">
<br>
<label for="txtContactHours" class="col-form-label">Run until you meet contact hours:</label>
<input type="number" class="form-control form-control-sm" id="txtContactHours">
<br>
<strong class="d-block">OR</strong>
<label for="dteEndDate" class="col-form-label">Run to Date:</label>
<input type="date" class="form-control form-control-sm" id="dteEndDate">
<br>
<label>Select Periods</label>
<table class="table table-sm table-hover" style="max-width: 450px;">
<thead>
<tr>
<th scope="col">Selected</th>
<th scope="col">Meeting Type (A/b)</th>
<th scope="col">Start Time</th>
<th scope="col">End Time</th>
</tr>
</thead>
<tbody id="periodBody">
</tbody>
</table>
<button id="cmdRunClass" class="btn btn-primary float-right">Run</button>
</div>
</div>
<br>
<table id="runResults">
</table>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct"
crossorigin="anonymous"></script>
<script type="module" src='components/appInnit.js'></script>
<script type="module" src='components/runclass/runclass.js'></script>
</body>
</html>