-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudentAdd.html
54 lines (50 loc) · 2.43 KB
/
StudentAdd.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Class Tracker</title>
<link rel="stylesheet" href="styles/StudentAdd.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="https://unpkg.com/@yaireo/tagify/dist/tagify.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<section class="container section_bg mt-4 mb-4 ps-3 pe-3 pt-2 pb-4 rounded-3">
<form>
<!-- Add Students -->
<div class="container mt-4">
<div class="d-flex flex-row bd-highlight">
<h2 class="bd-highlight text-white">Students</h2>
<select id="selectStudent" class="btn btn-secondary dropdown-toggle p-2 bd-highlight ms-3">
<option value="none" selected>New Student</option>
</select>
</div>
<div class="mb-3">
<label for="studentID" class="form-label fs-5 text-white">Canvas Student ID</label>
<input type="text" class="form-control bg-light" id="studentID" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="studentName" class="form-label fs-5 text-white">Student's Name</label>
<input type="text" class="form-control bg-light" id="studentName">
</div>
<div class="mb-3">
<label for="studentEmail" class="form-label fs-5 text-white">Student's Email</label>
<input name='email' class="form-control tagify--outside bg-light" id="studentEmail"
placeholder='Insert Student Emails'>
</div>
<button type="button" value="add" id="saveStudent" class="btn btn-secondary">Add Student</button>
<button type="button" value="add" id="forgetAll" class="btn btn-secondary">Forget All Students</button>
</div>
</form>
</section>
</body>
<script src="lib/bootstrap.bundle.min.js"></script>
<script src="lib/jquery-3.6.0.min.js"></script>
<script src="lib/tagify.min.js"></script>
<script src="lib/tagify.polyfills.min.js"></script>
<script src="js/StudentAdd.js"></script>
<script src="js/Student.js"></script>
<script src="js/StudentClass.js"></script>
<script src="js/AliasCore.js"></script>
<script src="js/AliasEditor.js"></script>
</html>