header.ejs 1.0 KB

12345678910111213141516171819202122232425
  1. <div class="header">
  2. <a class="headerStart" href="/" >
  3. <img src="/shared/images/logo.png" alt="Subline">
  4. <div class='headerLogo mobileHide'>THE SUBLINE</div>
  5. </a>
  6. <a class="mobileHomeButton" href="/">
  7. <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  8. <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
  9. <polyline points="9 22 9 12 15 12 15 22"></polyline>
  10. </svg>
  11. </a>
  12. <div class="headerEnd mobileHide">
  13. <a id="helpLink" class="headerHide" href="/help">HELP</a>
  14. <a id="privacyPolicyLink" class="headerHide" href="/privacy">PRIVACY POLICY</a>
  15. <a id="termsLink" class="headerHide" href="/terms">TERMS AND CONDITIONS</a>
  16. <button id="logInButton" class="button headerHide" onclick="loginObj.display()">LOG IN</button>
  17. <button id="joinButton" class="button headerHide" onclick="registerObj.display()">JOIN</button>
  18. </div>
  19. </div>