| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link href="../css/popup.css" rel="stylesheet">
- </head>
- <body>
- <div class="container">
- <button class="button-primary" id="grabbutton">Grab Delivery
- Invoice</button>
- <button class="button-primary" id="inputbutton">Input to
- Pizmet</button>
- <div class="table-container">
- <table>
- <thead>
- <tr>
- <th>Item #</th>
- <th>Quantity</th>
- <th>Price</th>
- <th>Total</th>
- </tr>
- </thead>
- <tbody id="tablebody">
- </tbody>
- </table>
- </div>
- </div>
- <script src="../js/background.js"></script>
- </body>
- </html>
|