1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="chrome=1">
- <title>Kasse</title>
- <base href="/mobile/">
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
- <!--[if lt IE 9]>
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- <link rel="stylesheet" href="css/styles.css">
- <link rel="stylesheet" href="css/example.css">
- <link rel="stylesheet" href="css/pygment_trac.css">
- <link rel="stylesheet" href="/vendor/styles/glyphicons.css">
- </head>
- <body>
- <h1>Konfiguration</h1>
- <form action="/mobile" method="GET">
- Wäscheklammer / Kasse:
- <select name="pos_id">
- <option value="1">1. rot</option>
- <option value="2">2. gelb</option>
- <option value="3">3. türkis</option>
- <option value="4">4. grün</option>
- <option value="5">5. weiß</option>
- <option value="6">6. blau</option>
- <option value="7">7. pink</option>
- <option value="8">8. violett</option>
- <option value="9">9. orange</option>
- </select><br/><br/>
- Kassierer Name:
- <input type="text" name="cashier" /><br/><br/>
- <input type="submit" value="senden" />
- </form>
- <!--<a href="/mobile/?seller_id=1&cashier=Robert">hier klicken!</a>-->
- </body>
- </html>
|