blob: 38dbccbb6892cead3946c00fddea82cc9965384e (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Manipulate Database</title>
</head>
<body>
<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
<h1>Product</h1>
Name: <input type="text" placeholder="Name" name="prod_name"><br>
Price: <input type="text" placeholder="Price" name="prod_price"><br>
Width: <input type="text" placeholder="Width" name="prod_width"><br>
Height: <input type="text" placeholder="Height" name="prod_height"><br>
Description:
<textarea placeholder="Description" name="prod_desc"></textarea>
<br> <input type="submit" value="Abschicken"> <input
type="reset" value="Zurücksetzen">
</form>
<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
<h1>Category</h1>
Name: <input type="text" placeholder="Name" name="cat_name"><br>
Description:
<textarea placeholder="Description" name="cat_desc"></textarea>
<br> <input type="submit" value="Abschicken"> <input
type="reset" value="Zurücksetzen">
</form>
<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
<h1>User</h1>
Username: <input type="text" placeholder="Name" name="user_username"><br>
Password: <input type="password" placeholder="Password"
name="user_password"><br> <input type="submit"
value="Abschicken"> <input type="reset" value="Zurücksetzen">
</form>
</body>
</html>
|