dashboard.ejs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>The Subline</title>
  6. <link rel="icon" type="img/png" href="/shared/images/logo.png">
  7. <link rel="stylesheet" href="/shared/shared.css">
  8. <link rel="stylesheet" href="/dashboardPage/dashboard.css">
  9. <link rel="stylesheet" href="/shared/menu.css">
  10. </head>
  11. <body>
  12. <% include ../shared/menu %>
  13. <div class="contentBlock">
  14. <div id="homeStrand" class="strand">
  15. <h1>Dashboard</h1>
  16. <div class="flexRow">
  17. <div class="flexColumn">
  18. <div class="card">
  19. <h4>Total Revenue (month)</h4>
  20. <p id="revenue"></p>
  21. </div>
  22. <div class="card">
  23. <p>Some Text</p>
  24. <p>Some more text</p>
  25. </div>
  26. </div>
  27. <div>right-hand</div>
  28. </div>
  29. <div>Row 2</div>
  30. </div>
  31. <div id="ingredientsStrand" class="strand">
  32. <h1>Ingredient strand</h1>
  33. </div>
  34. <div id="recipeBookStrand" class="strand">
  35. <h1>Recipe book strand</h1>
  36. </div>
  37. <div id="ordersStrand" class="strand">
  38. <h1>Orders Strand</h1>
  39. </div>
  40. </div>
  41. <script>let merchant = <%- JSON.stringify(merchant) %>;</script>
  42. <script>let transactions = <%- JSON.stringify(transactions) %>;</script>
  43. <script src="../shared/controller.js"></script>
  44. <script src="/dashboardPage/home.js"></script>
  45. </body>
  46. </html>