menu.ejs 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <div id="menu" class="menu">
  2. <div id="max" class="menuHead">
  3. <a href="/">
  4. <img class="menuLogo" src="/shared/images/logo.png" alt="The Subline">
  5. <p>THE SUBLINE</p>
  6. </a>
  7. <button class="menuShifter" onclick="controller.changeMenu()">&#8801;</button>
  8. </div>
  9. <div id="min" class="menuHead menuHeadMin">
  10. <a href="/">
  11. <img class="menuLogoMin" src="/shared/images/logo.png" alt="The Subline">
  12. </a>
  13. <button id="menuShifter2" onclick="controller.changeMenu()">&#8801;</button>
  14. </div>
  15. <button class="menuButton active" id="homeBtn">
  16. <svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  17. <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
  18. <polyline points="9 22 9 12 15 12 15 22"></polyline>
  19. </svg>
  20. <p>DASHBOARD</p>
  21. </button>
  22. <button class="menuButton" id="ingredientsBtn">
  23. <svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  24. <polyline points="21 8 21 21 3 21 3 8"></polyline>
  25. <rect x="1" y="3" width="22" height="5"></rect>
  26. <line x1="10" y1="12" x2="14" y2="12"></line>
  27. </svg>
  28. <p>INGREDIENTS</p>
  29. </button>
  30. <button class="menuButton" id="recipeBookBtn">
  31. <svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  32. <path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path>
  33. <path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>
  34. </svg>
  35. <p>RECIPE BOOK</p>
  36. </button>
  37. <button class="menuButton" id="analyticsBtn">
  38. <svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  39. <polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline>
  40. <polyline points="17 6 23 6 23 12"></polyline>
  41. </svg>
  42. <p>ANALYTICS</p>
  43. </button>
  44. <button class="menuButton" id="ordersBtn">
  45. <svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  46. <circle cx="9" cy="21" r="1"></circle>
  47. <circle cx="20" cy="21" r="1"></circle>
  48. <path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path>
  49. </svg>
  50. <p>ORDERS</p>
  51. </button>
  52. <button class="menuButton" id="transactionsBtn">
  53. <svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  54. <rect x="1" y="4" width="22" height="16" rx="2" ry="2"></rect>
  55. <line x1="1" y1="10" x2="23" y2="10"></line>
  56. </svg>
  57. <p>TRANSACTIONS</p>
  58. </button>
  59. <button class="menuButton" id="accountBtn">
  60. <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  61. <path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
  62. <circle cx="12" cy="7" r="4"></circle>
  63. </svg>
  64. <p>ACCOUNT</p>
  65. </button>
  66. <a class="menuButton" href="/logout">
  67. <svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  68. <path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path>
  69. <polyline points="16 17 21 12 16 7"></polyline>
  70. <line x1="21" y1="12" x2="9" y2="12"></line>
  71. </svg>
  72. <p>LOGOUT</p>
  73. </a>
  74. <div class="menuLinks">
  75. <button id="feedbackButton">Leave Feedback</button>
  76. <a href="/help">Help</a>
  77. </div>
  78. </div>