dashboard.ejs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. </head>
  10. <body>
  11. <div class="menu">
  12. <a class="menuHead" href="/">
  13. <img src="/shared/images/logo.png">
  14. <p>The Subline</p>
  15. </a>
  16. <button onclick="changeStrand('homeStrand')">Home</button>
  17. <button onclick="changeStrand('ingredientsStrand')">Ingredients</button>
  18. <button onclick="changeStrand('recipeBookStrand')">Recipe Book</button>
  19. <button onclick="changeStrand('ordersStrand')">Orders</button>
  20. <a class="logout" href="/logout">Logout</a>
  21. </div>
  22. <div class="content">
  23. <div id="homeStrand" class="strand">
  24. <h1>Home strand</h1>
  25. </div>
  26. <div id="ingredientsStrand" class="strand">
  27. <h1>Ingredient strand</h1>
  28. </div>
  29. <div id="recipeBookStrand" class="strand">
  30. <h1>Recipe book strand</h1>
  31. </div>
  32. <div id="ordersStrand" class="strand">
  33. <h1>Orders Strand</h1>
  34. </div>
  35. </div>
  36. <script>let merchant = <%- JSON.stringify(merchant) %>;</script>
  37. <script src="../shared/controller.js"></script>
  38. <script src="/dashboardPage/home.js"></script>
  39. </body>
  40. </html>