-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert.html
62 lines (53 loc) · 2 KB
/
insert.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Klausuren</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="css/klausuren.css" />
<link rel="stylesheet" type="text/css" href="css/pikaday.css" />
</head>
<body>
<div id="status"></div>
<header>
<img src="static/schwarzwald.svg" id="logo" alt="logo" />
<span id="headerTitle">Klausuren einplegen</span>
</header>
<div class="clear"></div>
<nav></nav>
<div id="content">
<div>
<select id="klausurenListen">
</select>
<div class="clear"></div>
<label for="profInput"><span class="text">Prof:</span> <br />
<input type="text" list="profList" id="profInput"
onchange="fsdeluxe.exams.getLectures()" placeholder="Prof" value=""/>
</label>
<label for="vorlesungInput"><span class="text">Prof:</span> <br />
<input type="text" list="lecturesList" id="profInput"
onchange="fsdeluxe.exams.getLectures()" placeholder="Klausurenname" value=""/>
</label>
<datalist id="lecturesList"></datalist>
<datalist id="profList"></datalist>
<label for="date"><span class="text">Datum:</span> <br />
<input type="text" id="date" class="timestamp"
placeholder="JJJJ-MM-TT"/>
</label>
</div>
</div>
<footer></footer>
<script src="static/ajax.js"></script>
<script src="static/lectures.js"></script>
<script src="static/moments.js"></script>
<script src="static/pickaday.js"></script>
<script>
var datePicker = new Pikaday({field: gui.lm('date'), format: 'YYYY-MM-DD'});
</script>
</body>
</html>