You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.5 KiB

3 years ago
  1. <nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
  2. <div class="navbar-brand d-none d-md-block">TI Link Shortener</div>
  3. <form class="form-inline ml-auto">
  4. <a onclick="showApps();" style="cursor: pointer;">
  5. <svg
  6. width="24"
  7. height="24"
  8. fill="none"
  9. stroke="currentColor"
  10. stroke-width="2"
  11. stroke-linecap="round"
  12. stroke-linejoin="round"
  13. style="vertical-align: middle;">
  14. <use xlink:href="{{url_for('.static', filename='icons/feathericons/feather-sprite.svg')}}#grid"/>
  15. </svg>
  16. </a>
  17. {% if current_user.is_authenticated %}
  18. <a href="https://account.technicalincompetence.club" style="color: white;">
  19. <svg
  20. width="24"
  21. height="24"
  22. fill="none"
  23. stroke="currentColor"
  24. stroke-width="2"
  25. stroke-linecap="round"
  26. stroke-linejoin="round"
  27. style="vertical-align: middle; margin-left: 1rem;">
  28. <use xlink:href="{{url_for('.static', filename='icons/feathericons/feather-sprite.svg')}}#user"/>
  29. </svg>
  30. </a>
  31. {% else %}
  32. <a class="btn btn-sm btn-primary" style="margin-left: 1rem;" href="https://account.technicalincompetence.club" role="button">Sign In</a>
  33. {% endif %}
  34. </form>
  35. </nav>