app.blade.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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="Scholar Health's 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. <style>
  22. p {
  23. font-size: 1.1em;
  24. }
  25. input:not([type="submit"]), select, option, textarea {
  26. background-color: #fdf5e3 !important;
  27. /*font-weight: bold !important;*/
  28. }
  29. input::placeholder {
  30. /*font-weight: normal !important;*/
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <nav
  36. class="navbar navbar-expand-lg navbar-light bg-white d-flex align-items-center justify-content-between position-fixed w-100 border-bottom">
  37. <div class="container-fluid">
  38. <a class="navbar-brand" href="{{route('welcome')}}"><img src="/img/logo.svg" alt="Logo" height="40"> </a>
  39. <div>
  40. <a href="{{route('logout')}}" class="btn btn-sm btn-outline-info px-4 py-1"><i
  41. class="fas fa-sign-out-alt"></i> Logout</a>
  42. <button class="navbar-toggler btn btn-outline-light hidden" type="button" data-toggle="collapse"
  43. data-target="#navbarNavDropdown"
  44. aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
  45. <i class="fas fa-bars"></i>
  46. </button>
  47. </div>
  48. </div>
  49. <div class="collapse navbar-collapse w-100 mobile" id="navbarNavDropdown">
  50. <ul class="navbar-nav text-uppercase border-top mt-2">
  51. <li class="nav-item mx-2">
  52. @include('layouts.nav')
  53. </li>
  54. </ul>
  55. </div>
  56. </nav>
  57. <hr class="m-0">
  58. <div class="sidenav">
  59. <h4 class="text-center font-weight-light my-3">
  60. <strong>
  61. LeadershipHealth HR
  62. </strong>
  63. </h4>
  64. <hr>
  65. @include('layouts.nav')
  66. </div>
  67. <div class="main">
  68. @yield('content')
  69. </div>
  70. <footer class="footer bg-light-grey d-flex align-items-center flex-column border-top">
  71. <div class="py-3">
  72. <p class="mb-0 text-center"><small>Copyright &copy; {{getdate()["year"]}} LeadershipHealth LLC. All rights reserved.</small> </p>
  73. </div>
  74. </footer>
  75. </body>
  76. <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
  77. integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
  78. crossorigin="anonymous"></script>
  79. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
  80. integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
  81. crossorigin="anonymous"></script>
  82. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.16/jquery.mask.min.js"></script>
  83. <script src="/moe-video/moe-video.js"></script>
  84. <script type="text/javascript">
  85. $(document).ready(function () {
  86. // $('.phone').mask('(000) 000-0000');
  87. // $('.zip').mask('00000');
  88. });
  89. </script>
  90. </html>