git.schokokeks.org
Repositories
Help
Report an Issue
bibweb.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
f3f7004
Branches
Tags
master
bibweb.git
gebrauchte.php
Schrift größer, Buttons mit Formatierung, Keywords fett
Bernd Wurst
commited
f3f7004
at 2023-10-03 20:35:37
gebrauchte.php
Blame
History
Raw
<?php session_start(); $headline = 'Gebrauchte Kartons'; $content = ''; if (isset($_REQUEST['error'])) { $content .= '<div class="card text-white bg-danger mb-3"> <div class="card-header">Fehler</div> <div class="card-body">Bitte wählen Sie, ob Sie gebrauchte Bag-in-Box-Kartons abgestellt haben.</div> </div>'; } $content .= ' <form class="form" action="save.php" method="post"> <input type="hidden" name="form" value="gebrauchte"> '; if (isset($_SESSION['angeliefert']) && $_SESSION['angeliefert'] === false) { $content .= '<p>Werden Sie gebrauchte Bag-in-Box-Kartons mitbringen?</p>'; } else { $content .= '<p>Haben Sie <strong>gebrauchte Bag-in-Box-Kartons</strong> mitgebracht und bei uns unter Dach gestellt?</p>'; } $content .= ' <div class="form-group form-group-lg row"> <div class="col-sm-6"><input type="submit" class="btn btn-block btn-lg btn-light" id="btn-kartonsja" name="kartonsja" value="Ja"></div> <div class="col-sm-6"><input type="submit" class="btn btn-block btn-lg btn-light" id="btn-kartonsnein" name="kartonsnein" value="Nein"></div> </div> </form> '; include("template.php");