-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (45 loc) · 1.33 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Abiturtool</title>
<script src="util.js"></script>
<script src="definitionen.js"></script>
<script src="testdaten.js"></script>
<script src="belegungsverpflichtungen.js"></script>
<script src="einbringungsverpflichtungen.js"></script>
<script src="jquery-1.7.1.min.js"></script>
<script src="widgets.js"></script>
<script src="gui.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<h1>Eingabe: Beurlaubung</h1>
<input type="checkbox" id="beurlaubungscb">
<h1>Eingabe: Projektarbeit</h1>
<input id="projektarbeitsnote">
<h1>Eingabe: Hauptfächer</h1>
<div id="hauptfaecher">
<!--<select></select>
<select></select>
<select></select>-->
</div>
<h1>Eingabe: Nebenfächer</h1>
<div id="nebenfaecher"></div>
<h1>Eingabe: Noten</h1>
<dl>
<dt> Unbelegter Kurs:
<dd> <input class="" value="">
<dt> Belegter Kurs mit bekannter Note:
<dd> <input class="belegt bekannt" value="12">
<dt> Belegter Kurs mit unbekannter Note:
<dd> <input class="belegt" value="?">
</dl>
<table id="noten"></table>
<h1>Ausgabe: Belegungsverpflichtungen</h1>
<table id="belegungsfehler"></table>
<h1>Eingabe: Auswahl Prüfungsfächer</h1>
<!-- -->
<h1>Ausgabe: Einzubringende Kurse </h1>
</body>
</html>