summaryrefslogtreecommitdiffstats
path: root/Aufgabe04/product.html
blob: 7aa7e1c923900e1f6523f893aa8d8381b45a379b (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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Production</title>
<link rel="stylesheet" type="text/css" href="underline.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>
		<label for="name"><u>N</u>ame:</label><input type="text"
			placeholder="Name" id="name" name="name" accesskey="n"
			maxlength="100"><br> <label for="price"><u>P</u>rice (Euro):</label><input
			type="text" placeholder="Price (Euro)" id="price" name="price" accesskey="p"
			maxlength="13"><br> <label for="width"><u>W</u>idth (mm):</label><input
			type="text" placeholder="Width (mm)" id="width" name="width" accesskey="w"
			maxlength="11"><br> <label for="height"><u>H</u>eight (mm):</label><input
			type="text" placeholder="Height (mm)" id="height" name="height"
			accesskey="h" maxlength="11"><br> <label for="desc"><u>D</u>escription:</label>
		<textarea placeholder="Description" id="desc" name="desc"
			accesskey="d" maxlength="1000"></textarea>
		<br>
		<button type="submit" accesskey="c">
			<u>C</u>reate
		</button>
		<button type="reset" accesskey="r">
			<u>R</u>eset
		</button>
	</form>
</body>
</html>