-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.html
76 lines (67 loc) · 3.09 KB
/
shell.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Technion Dependencies Helper </title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div style="text-align: center;"><h1> Technion Dependency Helper </h1></div>
<h2><b> BETA </b>, report bugs! </h2>
<p> Updated Jan 27th, 2021 </p>
<a href="https://github.com/Eladkay/TechnionDependenciesHelper"> GitHub for issues and suggestions </a>
<p> Enter here the course numbers you took, separated by spaces, and we will tell you what courses you can take! </p> <br>
<form method="post">
<div class="input-group">
<label for="courses">
Course numbers, separated by spaces:
</label>
<input type="text" class="form-control" name="courses" id="courses"/>
</div>
<br>
<div class="input-group">
<label for="digits">
Optionally, filter only courses whose course numbers begin with the given three digits:
</label>
<input type="text" class="form-control" name="digits" id="digits"/>
<br>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="filter" id="filter" value="yes">
<label class="form-check-label" for="filter">
Filter subjects with no dependencies
</label>
</div>
<!-- <input type="submit" name="bidusa"> <-- Bidusa Button </input> <br> <br> !-->
<div class="form-check">
<input class="form-check-input" type="checkbox" name="chem" id="chem" value="yes">
<label class="form-check-label" for="chem">
Include courses that require chemistry classification
</label>
<br>
<input class="form-check-input" type="checkbox" name="phys1" id="phys1" value="yes">
<label class="form-check-label" for="phys1">
Include courses that require physics classification for mechanics
</label>
<br>
<input class="form-check-input" type="checkbox" name="phys2" id="phys2" value="yes">
<label class="form-check-label" for="phys2">
Include courses that require physics classification for electricity
</label>
</div>
<br>
<div style="text-align: center;"><input type="submit"/></div>
</form>
<br>
</div>
</body>
</html>