summaryrefslogtreecommitdiffstats
path: root/Aufgabe04/product.html
blob: 8a81303ebd202cfa61a120ace8d3b5a08e8d2338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Production</title>
</head>
<body>
	<a href="./" accesskey="ü">Zur<em>ü</em>ck</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"><br>
		<label for="price"><u>P</u>rice:</label><input type="text" placeholder="Price" id="price" name="price" accesskey="p"><br>
		<label for="width"><u>W</u>idth:</label><input type="text" placeholder="Width" id="width" name="width" accesskey="w"><br>
		<label for="height"><u>H</u>eight:</label><input type="text" placeholder="Height" id="height" name="height" accesskey="h"><br> <label for="desc"><u>D</u>escription:</label>
		<textarea placeholder="Description" id="desc" name="desc" accesskey="d"></textarea>
		<br>
		<button type="submit" accesskey="a"><u>A</u>bschicken</button>
		<button type="reset" accesskey="z"><u>Z</u>urücksetzen</button>
	</form>
</body>
</html>