-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
69 lines (66 loc) · 3.03 KB
/
index.php
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
<html lang="cs" xml:lang="cs">
<head>
<title>Převod do souboru .ikm</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Andrej Kozlovský" />
<meta name="description" content="Převod do souboru BEST" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div id="header">
<div class="logo">
<h4>Převod do inkasního souboru</h4>
<h2>MLP Design</h2>
</div>
</div>
<div id="main">
<form enctype="multipart/form-data" action="parse.php" method="post">
<table>
<tr class="required">
<th><label class="required" for="frmupload-source" style="color: black">Vložte účetní soubor v Microsoft Excel:</label></th>
<td><input type="file" class="text" style="color: black" name="source" id="frmupload-source" required="required" data-nette-rules="{op:':filled',msg:'Please complete mandatory field.'}" /></td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr class="required">
<th><label class="required" for="frmupload-details-cisloUctu" style="color: black; text-align: left; margin: -50px">Číslo účtu:</label></th>
<td><input type="text" class="text" name="cisloUctu" id="frmupload-details-cisloUctu" required="required" data-nette-rules="{op:':filled',msg:'Please complete mandatory field.'}" value="" /></td>
<tr></tr>
<tr></tr>
<tr></tr>
<tr class="required">
<th><label class="required" for="frmupload-details-datumVytvoreni" style="color: black;">Datum vytvoření:</label></th>
<td><input type="date" class="text date" name="datumVytvoreni" required="required" data-nette-rules="{op:':filled',msg:'Please complete mandatory field.'}" value="<?php echo date('Y-m-d'); ?>" /></td>
</tr>
</tr>
</tr>
<tr></tr>
<tr></tr>
<tr class="required">
<th><label class="required" for="frmupload-details-datumSplatnosti" style="color: black;">Datum splatnosti:</label></th>
<td><input type="date" class="text date" name="datumSplatnosti" required="required" data-nette-rules="{op:':filled',msg:'Please complete mandatory field.'}" value="<?php echo date('Y-m-d'); ?>" /></td>
</tr>
</tr>
<tr></tr>
<tr></tr>
<tr>
<td>
<div class="switch" style="margin-left:2cm;">
<input type="checkbox" class="toggle-round" name="toggle">
<label for="label-text" style="color: black; font-size:80%;">Zpracování více dávek</label>
</div>
</td>
<td><input type="submit" class="button" name="submit" id="frmupload-submit" value="Vytvořit soubor ve formátu BEST" /></td>
<td><input type="submit" class="button" name="delete_history" id="frmupload-submit" value="Vymazat historii zpracování" /></td>
</tr>
</table>
</form>
</div>
<div id="footer">
<p>Copyright © 2015-2016 Andrej Kozlovský. All Rights Reserved.
<br /><a href="http://www.mlpdesign.net" title="Template design by MLP Design"> MLP Design</a>.
</p>
</div>
</body>
</html>