summaryrefslogtreecommitdiffstats
path: root/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum4/k-bestellung.html
diff options
context:
space:
mode:
Diffstat (limited to 'Bachelor/Entwicklung webbasierter Anwendungen/Praktikum4/k-bestellung.html')
-rw-r--r--Bachelor/Entwicklung webbasierter Anwendungen/Praktikum4/k-bestellung.html104
1 files changed, 104 insertions, 0 deletions
diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum4/k-bestellung.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum4/k-bestellung.html
new file mode 100644
index 0000000..f54957b
--- /dev/null
+++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum4/k-bestellung.html
@@ -0,0 +1,104 @@
+<!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>
+ <link rel="stylesheet" type="text/css" href="formats.css">
+</head>
+<!--<body onload="hello()">-->
+<body>
+ <h1>Kunde (Bestellung)
+ </h1>
+ <div>
+ <object data="pizza.swf" type="application/x-shockwave-flash" width="600" height="150">
+ <!-- <embed src="pizza.swf">
+ </embed>-->
+ </object>
+ </div>
+ <form action="http://www.fbi.h-da.de/cgi-bin/Echo.pl"
+ onsubmit="return checkAddr();" method="POST" id="bestellung">
+ <table width="100%">
+ <tr>
+ <td style="width:60%">
+ <!-- linke Tabelle Pizzen -->
+ <table>
+ <tr>
+ <td>
+ <img onclick="addToCart('Salami')" src="pizza.gif" alt="Salami"/>
+ </td>
+ <td>Salami</td>
+ <td>4.50 &euro;</td>
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart('Hawaii')" src="pizza.gif" alt="Hawaii"/>
+ </td>
+ <td>Hawaii</td>
+ <td>4.50 &euro;</td>
+
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart('Tonno')" src="pizza.gif" alt="Tonno"/>
+ </td>
+ <td>Tonno</td>
+ <td>5.00 &euro;</td>
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart('Marghetita')" src="pizza.gif" alt="Marghetita"/>
+ </td>
+ <td>Marghetita</td>
+ <td>4.00 &euro;</td>
+ </tr>
+ <!-- Linke Tabelle Pizzen zu-->
+ </table>
+ </td>
+ <td style="width:40%">
+ <!-- Rechte Tabelle Warenkorb -->
+ <table>
+ <tr>
+ <td colspan="2">Warenkorb
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <!-- <textarea name="warenkorb" cols="30" rows="5"></textarea> -->
+ <select id="warenkorb" name="wk" size="5" multiple>
+ <option id="dummy" disabled></option>
+ </select>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <p>Gesamtpreis:</p>
+ </td>
+ <td>
+ <!-- 1,00 &euro; -->
+ <div id="ausgabe_preis"> 0.00 &euro; </div>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <input type="text" id="kd_adr" name="kunde_adresse" value="Ihre Adresse" >
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <input type="submit" onclick="selectAll()" name="absenden_button" value="Absenden">
+ <input type="button" name="delete_button" value="L&ouml;schen" onclick="delFromCart()">
+ <input type="reset" name="abbrechen_button" value="Alle löschen" onclick="deleteAll()" >
+ </td>
+ </tr>
+ <!-- rechte Tabelle Warenkorb -->
+ </table>
+ </td>
+ </tr>
+ <!-- grosse Tabelle zu -->
+ </table>
+ </form>
+</body>
+</html> \ No newline at end of file