header.blade.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <header>
  2. <div class="collapse bg-dark" id="navbarHeader">
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-sm-8 col-md-7 py-4">
  6. <h4 class="text-white">About</h4>
  7. <p class="text-muted">Add some information about the album below, the author, or any other background context. Make it a few sentences long so folks can pick up some informative tidbits. Then, link them off to some social networking sites or contact information.</p>
  8. </div>
  9. <div class="col-sm-4 offset-md-1 py-4">
  10. <h4 class="text-white">Contact</h4>
  11. <ul class="list-unstyled">
  12. <!-- <li><a href="#" class="text-white">Follow on Twitter</a></li>
  13. <li><a href="#" class="text-white">Like on Facebook</a></li>
  14. <li><a href="#" class="text-white">Email me</a></li> -->
  15. </ul>
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. <h4 class="text-white">
  21. <div class="navbar navbar-dark bg-dark box-shadow">
  22. <div class="container d-flex justify-content-between">
  23. <a class="navbar-brand d-flex align-items-center">
  24. <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mr-2"><circle cx="12" cy="13" r="4"></circle></svg>
  25. <strong>Create your task</strong>
  26. </a>
  27. <!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarHeader" aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
  28. <a href="/registration">Registration</a>
  29. </button> -->
  30. @if (Route::has('login'))
  31. <div class="top-right links">
  32. @auth
  33. <a href="{{ url('/projects') }}">User</a>
  34. @else
  35. <a href="{{ route('login') }}">Login</a>
  36. @if (Route::has('register'))
  37. <a href="{{ route('register') }}">Register</a>
  38. @endif
  39. @endauth
  40. </div>
  41. @endif
  42. </div>
  43. </div>
  44. </div>
  45. </header>