-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
</head>
<body>
<h1>KATA Bérszámoló külföldi kifizetővel</h1>
<fieldset>
<label for="bevetel">Havi Bevétel</label>
<input type="number" name="bevetel" id="bevetel" />
<label for="levonasok">Levonások (min. tételes adó)</label>
<input type="number" min="50000" name="levonasok" id="levonasok" />
</fieldset>
<div id="app"></div>
<table>
<thead>
<tr>
<td></td>
<th>Fizetés</th>
<th>Ennyi hónapig</th>
</tr>
</thead>
<tbody>
<tr>
<th>Teljes</th>
<td id="teljes-fizetes"></td>
<td id="teljes-honap"></td>
</tr>
<tr>
<th>Büntetőadóval</th>
<td id="bunti-fizetes"></td>
<td id="bunti-honap"></td>
</tr>
<tr>
<th>Átlag</th>
<td id="atlag-fizetes"></td>
<td>12</td>
</tr>
</tbody>
</table>
<script src="script.js"></script>
</body>
</html>