summaryrefslogtreecommitdiffstats
path: root/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html
diff options
context:
space:
mode:
Diffstat (limited to 'Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html')
-rw-r--r--Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html101
1 files changed, 101 insertions, 0 deletions
diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html
new file mode 100644
index 0000000..54657ec
--- /dev/null
+++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+ "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
+ <title>Kunde (Bestellung)</title>
+ <script type="text/javascript"
+ src="functions.js"></script>
+</head>
+<body onload="hello()">
+ <h1>Kunde (Bestellung)
+ <object>
+ <embed src="pizza.swf">
+ </embed>
+ </object>
+ </h1>
+ <form action="http://mmlab.fbi.h-da.de/cgi-bin/dscript/echo.pl"
+ onsubmit="return checkAddr();" method="POST" id="bestellung">
+ <table width="100%">
+ <tr>
+ <td style="width:70%">
+ <!-- linke Tabelle Pizzen -->
+ <table>
+ <tr>
+ <td>
+ <img onclick="addToCart()" src="pizza.gif" alt="Salami"/>
+ </td>
+ <td>
+ Salami
+ </td>
+ <td>
+ 4,50 &euro;
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart()" src="pizza.gif" alt="Hawaii"/>
+ </td>
+ <td>Hawaii</td>
+ <td>4,50 &euro;</td>
+
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart()" src="pizza.gif" alt="Tonno"/>
+ </td>
+ <td>Tonno</td>
+ <td>4,50 &euro;</td>
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart()" src="pizza.gif" alt="Marghetita"/>
+ </td>
+ <td>Marghetita</td>
+ <td> 4,50 &euro;</td>
+ </tr>
+ <!-- Linke Tabelle Pizzen zu-->
+ </table>
+ </td>
+ <td style="width:30%">
+ <!-- Rechte Tabelle Warenkorb -->
+ <table>
+ <tr>
+ <td colspan="2">Warenkorb
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <!-- <textarea name="warenkorb" cols="30" rows="5"></textarea> -->
+ <select name="warenkorb" size="5">
+ </select>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <p>Gesamtpreis:</p>
+ </td>
+ <td id="ausgabe_preis">
+ 1,00 &euro;
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <input type="text" name="kunde_adresse" value="Ihre Adresse">
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <input type="submit" name="absenden_button" value="Absenden">
+ <input type="reset" name="abbrechen_button" value="Abbrechen">
+ </td>
+ </tr>
+ <!-- rechte Tabelle Warenkorb -->
+ </table>
+ </td>
+ </tr>
+ <!-- grosse Tabelle zu -->
+ </table>
+ </form>
+</body>
+</html> \ No newline at end of file