popup.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link href="../css/popup.css" rel="stylesheet">
  7. </head>
  8. <body>
  9. <div class="container">
  10. <button class="button-primary" id="grabbutton">Grab Delivery
  11. Invoice</button>
  12. <button class="button-primary" id="inputbutton">Input to
  13. Pizmet</button>
  14. <div class="table-container">
  15. <table>
  16. <thead>
  17. <tr>
  18. <th>Item #</th>
  19. <th>Quantity</th>
  20. <th>Price</th>
  21. <th>Total</th>
  22. </tr>
  23. </thead>
  24. <tbody id="tablebody">
  25. </tbody>
  26. </table>
  27. </div>
  28. </div>
  29. <script src="../js/background.js"></script>
  30. </body>
  31. </html>