summaryrefslogtreecommitdiffstats
path: root/Aufgabe04/index.html
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-04-13 13:35:23 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-04-13 13:35:23 +0200
commitde1de1d9de9a3b3945db4b87f045f6e3288244c0 (patch)
treeb741fbd4566967646272dfc8c4f547b846570d62 /Aufgabe04/index.html
parentf58cae4d3f1dd69471793dfe3923ebff819f1cfb (diff)
downloadInternetTechnologien-de1de1d9de9a3b3945db4b87f045f6e3288244c0.tar.gz
InternetTechnologien-de1de1d9de9a3b3945db4b87f045f6e3288244c0.zip
4th task sql and forms
Diffstat (limited to 'Aufgabe04/index.html')
-rw-r--r--Aufgabe04/index.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/Aufgabe04/index.html b/Aufgabe04/index.html
new file mode 100644
index 0000000..38dbccb
--- /dev/null
+++ b/Aufgabe04/index.html
@@ -0,0 +1,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> \ No newline at end of file