b7442cef18a92f84cf689b21212e0188cf23853c
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step4.php       1) <?php
step4.php       2) session_start();
step4.php       3) 
step4.php       4) 
step4.php       5) $headline = 'Gebrauchte Kartons';
step4.php       6) $content = '';
step4.php       7) if (isset($_REQUEST['error'])) {
Bernd Wurst Fehlermeldungen auf BS4 por...

Bernd Wurst authored 6 years ago

gebrauchte.php  8)     $content .= '<div class="card text-white bg-danger mb-3">
gebrauchte.php  9)     <div class="card-header">Fehler</div>
gebrauchte.php 10)     <div class="card-body">Bitte wählen Sie, ob Sie gebrauchte Bag-in-Box-Kartons abgestellt haben.</div>
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step4.php      11)     </div>';
step4.php      12) }
step4.php      13) 
step4.php      14) 
step4.php      15) $content .= '
step4.php      16)     <form class="form" action="save.php" method="post">
Bernd Wurst Spätere Anlieferung eingebaut

Bernd Wurst authored 6 years ago

gebrauchte.php 17)     <input type="hidden" name="form" value="gebrauchte">
Bernd Wurst Cookie löschbar, Datenschut...

Bernd Wurst authored 6 years ago

gebrauchte.php 18)     ';
gebrauchte.php 19)     if ($_SESSION['angeliefert']) {
gebrauchte.php 20)         $content .= '<p>Haben Sie gebrauchte Bag-in-Box-Kartons angeliefert und bei uns unter Dach gestellt?</p>';
gebrauchte.php 21)     } else {
gebrauchte.php 22)         $content .= '<p>Werden Sie gebrauchte Bag-in-Box-Kartons mitbringen?</p>';
gebrauchte.php 23)     }
gebrauchte.php 24) $content .= '
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step4.php      25)        <div class="form-group form-group-lg row">
Bernd Wurst Migration to bootstrap-4.0.0

Bernd Wurst authored 6 years ago

gebrauchte.php 26)         <div class="col-sm-6"><input type="submit" class="btn btn-block btn-lg btn-light" id="btn-kartonsja" name="kartonsja" value="Ja"></div>
gebrauchte.php 27)         <div class="col-sm-6"><input type="submit" class="btn btn-block btn-lg btn-light" id="btn-kartonsnein" name="kartonsnein" value="Nein"></div>