app.blade.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="csrf-token" content="{{ csrf_token() }}">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8. <title>LeadershipHealth</title>
  9. <meta name="description"
  10. content="The Leadership Health program was developed in collaboration with the University of Maryland School of Public Health through a Maryland Industrial Partnerships (MIPS) project.">
  11. <link rel="icon" href={{asset('img/icon.svg')}}>
  12. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
  13. integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
  14. <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;900&display=swap" rel="stylesheet">
  15. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
  16. <link href={{asset('css/style.css')}} rel=stylesheet>
  17. <script src="https://cdn.jsdelivr.net/npm/vue@2.6.0"></script>
  18. <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
  19. <script src="https://static.opentok.com/v2/js/opentok.min.js"></script>
  20. <link rel="stylesheet" href="/moe-video/moe-video.css"/>
  21. <!-- Hotjar Tracking Code for https://hr.leadershiphealth.org -->
  22. <script>
  23. (function(h,o,t,j,a,r){
  24. h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
  25. h._hjSettings={hjid:2302901,hjsv:6};
  26. a=o.getElementsByTagName('head')[0];
  27. r=o.createElement('script');r.async=1;
  28. r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
  29. a.appendChild(r);
  30. })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
  31. </script>
  32. <style>
  33. p {
  34. font-size: 1.1em;
  35. }
  36. input:not([type="submit"]), select, option, textarea {
  37. background-color: #fdf5e3 !important;
  38. /*font-weight: bold !important;*/
  39. }
  40. input::placeholder {
  41. /*font-weight: normal !important;*/
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <nav
  47. class="navbar navbar-expand-lg navbar-light bg-white d-flex align-items-center justify-content-between position-fixed w-100 border-bottom">
  48. <div class="container-fluid">
  49. <a class="navbar-brand" href="{{route('welcome')}}"><img src="/img/logo.svg" alt="Logo" height="40"> </a>
  50. <div>
  51. <a href="{{route('logout')}}" class="btn btn-sm btn-outline-info px-4 py-1"><i
  52. class="fas fa-sign-out-alt"></i> Logout</a>
  53. <button class="navbar-toggler btn btn-outline-light hidden" type="button" data-toggle="collapse"
  54. data-target="#navbarNavDropdown"
  55. aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
  56. <i class="fas fa-bars"></i>
  57. </button>
  58. </div>
  59. </div>
  60. <div class="collapse navbar-collapse w-100 mobile" id="navbarNavDropdown">
  61. <ul class="navbar-nav text-uppercase border-top mt-2">
  62. <li class="nav-item mx-2">
  63. @include('layouts.nav')
  64. </li>
  65. </ul>
  66. </div>
  67. </nav>
  68. <hr class="m-0">
  69. <div class="sidenav">
  70. <h4 class="text-center font-weight-light my-3">
  71. <strong>
  72. LeadershipHealth HR
  73. </strong>
  74. </h4>
  75. <hr>
  76. @include('layouts.nav')
  77. </div>
  78. <div class="main">
  79. @yield('content')
  80. </div>
  81. <footer class="footer bg-light-grey d-flex align-items-center flex-column border-top">
  82. <div class="py-3">
  83. <p class="mb-0 text-center"><small>Copyright &copy; {{getdate()["year"]}} LeadershipHealth LLC. All rights reserved.</small> </p>
  84. </div>
  85. </footer>
  86. </body>
  87. <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
  88. integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
  89. crossorigin="anonymous"></script>
  90. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
  91. integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
  92. crossorigin="anonymous"></script>
  93. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.16/jquery.mask.min.js"></script>
  94. <script src="/moe-video/moe-video.js"></script>
  95. <script type="text/javascript">
  96. $(document).ready(function () {
  97. // $('.phone').mask('(000) 000-0000');
  98. // $('.zip').mask('00000');
  99. });
  100. </script>
  101. </html>