-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (53 loc) · 3.22 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Zamówienia</title>
<!--[if !IE]><!-->
<link rel="stylesheet" href="/css/main.css" />
<!--<![endif]-->
<!--[if gte IE 7]>
<link rel="stylesheet" type="text/css" href="/css/main.css" media="screen, projection" />
<![endif]-->
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="http://universal-ie6-css.googlecode.com/files/ie6.0.3.css" media="screen, projection" />
<![endif]-->
</head>
<body id="home">
<header>
<div id="slogan"><center><h1>Strona do składania i wydruku zamówień</h1></center></div>
<div id="attention" style="color: #dd0000;"><center><h1>
UWAGA!</br></h1>
<h3>Wpisując produkt, który trzeba zamówić w polę nazwa wpisujemy jednostkę miary w jakim dany produkt występuje!<br>
Np. w przypadku syropu należy wpisać w pole NAZWA: "Syrop owocowy 5L", a w polę ilość należy wpisać np. "3", jeżeli chcemy zamówić 3 5-litrowe butelki syropu.<br>
W przypadku płynów kupowanych na litry lub produktów kupowanych na wagę, w pole NAZWA należy wpisać nazwę produktu i jednostkę<br>
Np. "Olej napędowy L" i wtedy w pole ilość wpisujemy ilość litrów danego płynu lub wagę zamawianego produktu.
</h3></center></div>
</header>
<section class="container">
<center>
<form method="POST" action="send.php">
<table>
<tr><th>Nazwa</th><th>Ilość</th></tr>
<tr><td><input type="text" name="name1"></input></td><td><input type="text" name="quantity1" value="1"></input></td></tr>
<tr><td><input type="text" name="name2"></input></td><td><input type="text" name="quantity2" value="1"></input></td></tr>
<tr><td><input type="text" name="name3"></input></td><td><input type="text" name="quantity3" value="1"></input></td></tr>
<tr><td><input type="text" name="name4"></input></td><td><input type="text" name="quantity4" value="1"></input></td></tr>
<tr><td><input type="text" name="name5"></input></td><td><input type="text" name="quantity5" value="1"></input></td></tr>
<tr><td><input type="text" name="name6"></input></td><td><input type="text" name="quantity6" value="1"></input></td></tr>
<tr><td><input type="text" name="name7"></input></td><td><input type="text" name="quantity7" value="1"></input></td></tr>
<tr><td><input type="text" name="name8"></input></td><td><input type="text" name="quantity8" value="1"></input></td></tr>
<tr><td><input type="text" name="name9"></input></td><td><input type="text" name="quantity9" value="1"></input></td></tr>
<tr><td><input type="text" name="name10"></input></td><td><input type="text" name="quantity10" value="1"></input></td></tr>
<tr><td><input type="text" name="name11"></input></td><td><input type="text" name="quantity11" value="1"></input></td></tr>
<tr><td><input type="text" name="name12"></input></td><td><input type="text" name="quantity12" value="1"></input></td></tr>
<tr><th>Wpisujący:</th><th></th></tr>
<tr><td>Imię: <input type="text" name="writersName" placeholder="Imię"></input>
</td><td>Nazwisko: <input type="text" name="writersLName" placeholder="Nazwisko"></input></td></tr>
</table>
<input type="submit" value="Wyślij">
</form>
</center>
</section>
</body>
</html>