-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (64 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Technikprobleme</title>
<meta name="description" content="Projekt DB">
<meta name="author" content="Informatikkurs 2020">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/colors.css" />
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<div class="header">
<span class="headleft">
</span>
<div class="logo">
<img src="logo-1.png" />
</div>
</div>
<script src="script.js"></script>
<div id="container" class="container">
<table>
<tr><td> <label for="who">Ihr Kürzel:</label>
</td><td> <input id="who" placeholder="eingeben" oninput="checkInput()"></td></tr>
<tr><td><label for="room">Raum:</label>
</td><td><input id="room" placeholder="eingeben" oninput="checkInput()"></td></tr>
<tr><td><label for="what">Fehlerhaftes Gerät:</label>
</td><td> <div class="selector">
<input placeholder="auswählen oder eingeben" type="enter" id="what"list="what list"oninput="checkInput()"/>
<datalist id="what list">
<option value="AppleTV">AppleTV</option>
<option value="Batterien">Batterien</option>
<option value="Beamer">Beamer</option>
<option value="CD-/DVD-Spieler">CD-/DVD-Spieler</option>
<option value="Fernseher">Fernseher</option>
<option value="Laptop NWT">Laptop NWT</option>
<option value="Lautsprecher">Lautsprecher</option>
<option value="Microsoft Wireless Display Adapter">Microsoft Wireless Display Adapter</option>
<option value="Smartboard">Smartboard</option>
<option value="Visualizer">Visualizer</option>
</datalist>
</div></td></tr>
<tr><td><label for="why">Beschreibung des Fehlers:</label>
</td><td><textarea id="why" placeholder="eingeben" cols="25" rows="4" oninput="checkInput()"></textarea><br></td></tr>
</table>
<button class="submit" id="submit" onclick="push()" disabled>✗</button>
</div>
<div class="footer">
<table style="width: 100%; padding: 10px;">
<tr>
<td style="width: auto;">
Copyright 2020 ©
</td>
<td style="text-align: right; border-right: 1px solid rgba(255, 255, 255, 0.5); padding-right: 10px; width: 71px;">
<a style="text-decoration: none; color: rgba(255, 255, 255, 0.5);" href="http://www.helmholtz-karlsruhe.de/">Startseite</a>
</td>
<td style="text-align: right; width: 81px; padding-left: 10px;">
<a style="text-decoration: none; color: rgba(255, 255, 255, 0.5);" href="http://www.helmholtz-karlsruhe.de/impressum/">Impressum</a>
</td>
</tr>
</table>
</div>
</body>
</html>