-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (59 loc) · 2.78 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
<html>
<head>
<meta charset="UTF-8">
<meta name='author' content='Leon Ebel'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Abrechnungstool für Trainer</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- STYLES -->
<link rel="stylesheet" type="text/css" href="assets/css/main.min.css">
</head>
<body>
<header>
<h1 class="header">Abrechnungstool Mil</h1>
<img class="logo" src="assets/img/logo-mil-original.png" alt="Logo">
</header>
<div class="content">
<div id="tables">
<table class="table" id="table">
<tr><td colspan="7">Übungsleitervergütung Handball</td></tr>
<tr><th colspan="7"><div id="youth" contenteditable="true" div-placeholder="Hier Jugend eintragen"></div></th></tr>
<tr><th colspan="7"><div id="month" contenteditable="true" div-placeholder="Hier Monat eintragen"></div></th></tr>
<tr>
<th>Datum</th>
<th>Tag</th>
<th>Event</th>
<th>Faktor</th>
<th>Stundensatz (€)</th>
<th>Löschen</th>
</tr>
</table>
<table class="sum" id="sum">
<tr><th>Summe (€)</th></tr>
<tr><td>0</td></tr>
</table>
</div>
<div class="entryButtons">
<input type="date" title="Datum" class="input dateInput" id="date"/>
<select title="Event" class="dropdown" id="event">
<option value="" disabled>Event:</option>
<option value="Training">Training</option> <!-- 7.5€ -->
<option value="Spiel">Spiel</option> <!-- 7.5€ -->
<option value="Quali">Quali</option> <!-- 3 Spiele 20€ / 4 Spiele 25€ / 5 Spiele 30€ -->
</select>
<input title="Faktor" class="input factorInput" id="factor" type="number" value="1" min="1" max="5">
<br><br>
<button class="button" id="submit" type="submit">Eintragen</button>
<button class="button" id="download" type="button">Herunterladen</button>
<button class="button" id="reset" type="button">Zurücksetzen</button>
</div>
</div>
<footer>© Copyright 2019 Leon Ebel <!-- All Rights Reserved --></footer>
<!-- SCRIPTS -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="libs/sheetJS/xlsx.full.min.js" async></script>
<script src="libs/fileSaver/FileSaver.min.js" async></script>
<script src="assets/js/index.js" async></script>
<script>if (window.module) module = window.module;</script>
</body>
</html>