-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (93 loc) · 4.11 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<script src="node_modules/typed.js/lib/typed.js"></script>
<title>WC warte Liste</title>
</head>
<body>
<div id="snackbar">Ungüliger Name</div>
<div id="snackbar1">Kein Platz</div>
<div id="snackbar2">Für Vollbild F11 drücken</div>
<div id="main">
<div id="wcBackground">
<h1 id="wc">WC</h1>
<h1 id="frei">frei</h1>
<div id="bottomInput">
<input id="nameInput" type="text" autofocus>
<script>
var typed4 = new Typed('#nameInput', {
strings: ['Berkkan...', 'Nefise...', 'Patrycja...', 'Cenk...', 'Name...'],
typeSpeed: 40,
backSpeed: 30,
attr: 'placeholder',
// bindInputFocusEvents: true,
loop: true
});
</script>
<div id="addBtn" onclick="add()">
<div id="kreuz">+</div>
<div id="text">Hinzufügen</div>
</div>
</div>
<div id="next" onclick="next()">
<div id="arrow"></div>
</div>
</div>
<table>
<thead>
<tr>
<td class="nummer_header" style="border-left: 0px; border-top: 0px;">Nr.</td>
<td class="name_header" style="border-top: 0px;" id="test">Name</td>
<td class="nummer_header" style="border-top: 0px;">Nr.</td>
<td class="name_header" style="border-top: 0px;">Name</td>
<td class="nummer_header" style="border-top: 0px;">Nr.</td>
<td class="name_header" style="border-right: 0px; border-top: 0px;">Name</td>
</tr>
</thead>
<tbody>
<tr>
<td class="nummer" id="idNummer0" style="border-left: 0px">1</td>
<td class="name" id="output0"></td>
<td class="nummer">5</td>
<td class="name" id="output4"></td>
<td class="nummer">9</td>
<td class="name" id="output8" style="border-right: 0px"></td>
</tr>
<tr>
<td class="nummer" id="idNummer1" style="border-left: 0px">2</td>
<td class="name" id="output1"></td>
<td class="nummer">6</td>
<td class="name" id="output5"></td>
<td class="nummer">10</td>
<td class="name" id="output9" style="border-right: 0px"></td>
</tr>
<tr>
<td class="nummer" style="border-left: 0px">3</td>
<td class="name" id="output2"></td>
<td class="nummer">7</td>
<td class="name" id="output6"></td>
<td class="nummer">11</td>
<td class="name" id="output10" style="border-right: 0px"></td>
</tr>
<tr>
<td class="nummer" style="border-left: 0px; border-bottom: 0px; padding-bottom: 0px;">4</td>
<td class="name" id="output3" style="border-bottom: 0px; padding-bottom: 0px;"></td>
<td class="nummer" style="border-bottom: 0px; padding-bottom: 0px;">8</td>
<td class="name" id="output7" style="border-bottom: 0px; padding-bottom: 0px;"></td>
<td class="nummer" style="border-bottom: 0px; padding-bottom: 0px;">12</td>
<td class="name" id="output11" style="border-right: 0px; border-bottom: 0px; padding-bottom: 0px;">
</td>
</tr>
</tbody>
</table>
</div>
<script src="create_user.js"></script>
<!--
ʕ•ᴥ•ʔ
-->
</body>
</html>