summaryrefslogtreecommitdiffstats
path: root/Aufgabe04/product.html
blob: 6b37cf1e0267e0d6bd2ba274fa4b78bc11816d7f (plain)
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Production</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<a href="./" accesskey="b"><em>B</em>ack </a>
	<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
		<h1>Product</h1>
		<div class="row">
			<label for="name"><u>N</u>ame:</label>
			<input class="formw" type="text"
				placeholder="Name" id="name" name="name" accesskey="n"
				maxlength="100">
		</div>
		<div class="row">
			<label for="price"><u>P</u>rice (Euro):</label>
			<input class="formw" type="text"
				placeholder="Price (Euro)" id="price" name="price" accesskey="p"
				maxlength="13">
		</div>
		<div class="row">
			<label for="width"><u>W</u>idth (mm):</label>
			<input class="formw" type="text"
				placeholder="Width (mm)" id="width" name="width" accesskey="w"
				maxlength="11">
		</div>
		<div class="row">
			<label for="height"><u>H</u>eight (mm):</label>
			<input class="formw" type="text"
				placeholder="Height (mm)" id="height" name="height" accesskey="h"
				maxlength="11">
		</div>
		<div class="row">
			<label for="desc"><u>D</u>escription:</label>
			<textarea class="formw" placeholder="Description" id="desc" name="desc"
				accesskey="d" maxlength="1000"></textarea>
		</div>
		<div class="spacer">&nbsp;</div>
		<button type="submit" accesskey="c">
			<u>C</u>reate
		</button>
		<button type="reset" accesskey="r">
			<u>R</u>eset
		</button>
	</form>
</body>
</html>