diff options
| author | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
|---|---|---|
| committer | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
| commit | 33613a85afc4b1481367fbe92a17ee59c240250b (patch) | |
| tree | 670b842326116b376b505ec2263878912fca97e2 /Bachelor/Entwicklung webbasierter Anwendungen/Praktikum5_6/k-bestellung.html | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Bachelor/Entwicklung webbasierter Anwendungen/Praktikum5_6/k-bestellung.html')
| -rw-r--r-- | Bachelor/Entwicklung webbasierter Anwendungen/Praktikum5_6/k-bestellung.html | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum5_6/k-bestellung.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum5_6/k-bestellung.html new file mode 100644 index 0000000..f54957b --- /dev/null +++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum5_6/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 €</td>
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart('Hawaii')" src="pizza.gif" alt="Hawaii"/>
+ </td>
+ <td>Hawaii</td>
+ <td>4.50 €</td>
+
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart('Tonno')" src="pizza.gif" alt="Tonno"/>
+ </td>
+ <td>Tonno</td>
+ <td>5.00 €</td>
+ </tr>
+ <tr>
+ <td>
+ <img onclick="addToCart('Marghetita')" src="pizza.gif" alt="Marghetita"/>
+ </td>
+ <td>Marghetita</td>
+ <td>4.00 €</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 € -->
+ <div id="ausgabe_preis"> 0.00 € </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ö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 |
