diff options
| -rw-r--r-- | Aufgabe04/category.html | 19 | ||||
| -rw-r--r-- | Aufgabe04/index.html | 31 | ||||
| -rw-r--r-- | Aufgabe04/product.html | 22 | ||||
| -rw-r--r-- | Aufgabe04/user.html | 18 |
4 files changed, 62 insertions, 28 deletions
diff --git a/Aufgabe04/category.html b/Aufgabe04/category.html new file mode 100644 index 0000000..93946a0 --- /dev/null +++ b/Aufgabe04/category.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Category</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>Category</h1> + <u>N</u>ame: <input type="text" placeholder="Name" name="name" accesskey="n"><br> + <u>D</u>escription: + <textarea placeholder="Description" 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>
\ No newline at end of file diff --git a/Aufgabe04/index.html b/Aufgabe04/index.html index 38dbccb..ecf747c 100644 --- a/Aufgabe04/index.html +++ b/Aufgabe04/index.html @@ -5,33 +5,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> + <a href="product.html" accesskey="p"><em>P</em>roducts</a><br> + <a href="category.html" accesskey="c"><em>C</em>ategroy</a><br> + <a href="user.html" accesskey="u"><em>U</em>ser</a><br> </body> </html>
\ No newline at end of file diff --git a/Aufgabe04/product.html b/Aufgabe04/product.html new file mode 100644 index 0000000..1bfb4d3 --- /dev/null +++ b/Aufgabe04/product.html @@ -0,0 +1,22 @@ +<!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> + <u>N</u>ame: <input type="text" placeholder="Name" name="name" accesskey="n"><br> + <u>P</u>rice: <input type="text" placeholder="Price" name="price" accesskey="p"><br> + <u>W</u>idth: <input type="text" placeholder="Width" name="width" accesskey="w"><br> + <u>H</u>eight: <input type="text" placeholder="Height" name="height" accesskey="h"><br> + <u>D</u>escription: + <textarea placeholder="Description" 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>
\ No newline at end of file diff --git a/Aufgabe04/user.html b/Aufgabe04/user.html new file mode 100644 index 0000000..90cc212 --- /dev/null +++ b/Aufgabe04/user.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>User</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>User</h1> + <u>U</u>sername: <input type="text" placeholder="Username" name="username" + accesskey="u"><br> <u>P</u>assword: <input type="password" + placeholder="Password" name="password" accesskey="p"><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>
\ No newline at end of file |
