Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Lieferantenseite.php 1.12 KiB
<!DOCTYPE html>
<html lang="de">  
    <head>
        <meta charset="UTF-8" />
        <title>Lieferantenseite</title>
    </head>
    <body>
        <header>
            <h1>Offene Bestellungen</h1>
        </header>
        <main>
            <form id="form_bestellStatusi" action="https://echo.fbi.h-da.de/" method="post" accept-charset="UTF-8">
                <p>Schulz, Kasinostraße 5 - 13,50€</p>
                <p>Pizza Margherita, Pizza Tonno</p>
                <table>
                    <tr>
                        <th>FERTIG</th>
                        <th>UNTERWEGS</th>
                        <th>GELIEFERT</th>
                    </tr>
                    <tr>
                        <th><input type="radio" name="statusi" onclick="this.form.submit()" value="fertig" checked /></th>
                        <th><input type="radio" name="statusi" onclick="this.form.submit()" value="unterwegs" /></th>
                        <th><input type="radio" name="statusi" onclick="this.form.submit()" value="geliefert" /></th>
                    </tr>
                </table>
            </form>
        </main>
    </body>
</html>