login-rs.blade.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. <meta name="csrf-token" content="{{ csrf_token() }}">
  9. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  10. <meta name="description" content="{{ config('app.name') }} | The Highest Quality Of Care">
  11. <meta name="theme-color" content="#49529B">
  12. <meta name="title" content="{{ config('app.name') }}">
  13. <meta property="og:type" content="website">
  14. <meta property="og:url" content="{{ config('app.backToInfoSiteUrl') }}/">
  15. <meta property="og:title" content="{{ config('app.name') }}">
  16. <meta property="og:description" content="{{ config('app.name') }} | The Highest Quality Of Care">
  17. <meta property="twitter:card" content="summary_large_image">
  18. <meta property="twitter:url" content="{{ config('app.backToInfoSiteUrl') }}/">
  19. <meta property="twitter:title" content="{{ config('app.name') }}">
  20. <meta property="twitter:description" content="{{ config('app.name') }} | The Highest Quality Of Care">
  21. <title>{{ config('app.name') }} | The Highest Quality Of Care</title>
  22. <meta name="description"
  23. content="The {{ config('app.name') }} program was developed in collaboration with the University of Maryland School of Public Health through a Maryland Industrial Partnerships (MIPS) project.">
  24. <meta name="keywords"
  25. content="Scholar, Health, Leadership, covid-19, Coronavirus, Deaf, Hard of Hearing, Maryland, MIPS, Industrial, Partnership">
  26. <link rel="icon" type="image/png" href="{{ asset('img/icon.svg') }}">
  27. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
  28. integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
  29. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
  30. <link href="{{ asset('/css/strengthify.min.css') }}" rel="stylesheet">
  31. <link href="{{ asset('css/layout.css') }}" rel=stylesheet>
  32. <link href="{{ asset('css/lh.css') }}" rel=stylesheet>
  33. <link href="{{ asset('css/style.css') }}" rel=stylesheet>
  34. <link href="{{ asset('css/pristine.css') }}" rel=stylesheet>
  35. <script src="https://cdn.jsdelivr.net/npm/vue@2.6.0"></script>
  36. <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
  37. <script src="{{ asset('/js/jquery.strengthify.min.js') }}"></script>
  38. <script src='https://www.google.com/recaptcha/api.js'></script>
  39. <script>
  40. $(function() {
  41. $.ajaxSetup({
  42. headers: {
  43. 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
  44. }
  45. });
  46. });
  47. </script>
  48. <!-- Hotjar Tracking Code for https://hr.leadershiphealth.org -->
  49. <script>
  50. (function(h, o, t, j, a, r) {
  51. h.hj = h.hj || function() {
  52. (h.hj.q = h.hj.q || []).push(arguments)
  53. };
  54. h._hjSettings = {
  55. hjid: 2302901,
  56. hjsv: 6
  57. };
  58. a = o.getElementsByTagName('head')[0];
  59. r = o.createElement('script');
  60. r.async = 1;
  61. r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
  62. a.appendChild(r);
  63. })(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
  64. </script>
  65. </head>
  66. <body>
  67. <div id="mask"
  68. style="background: rgba(0, 0, 0, 0) url(&quot;/vanillaspin.gif&quot;) no-repeat scroll center center; position: fixed; top: 0px; left: 0px; z-index: 9999; width: 100%; height: 100%; display: none;">
  69. </div>
  70. <div id="moe-form-mask"
  71. style="background: rgba(0, 0, 0, .1) no-repeat scroll center center; position: fixed; top: 0px; left: 0px; z-index: 97; width: 100%; height: 100%; display: none;">
  72. </div>
  73. <nav class="navbar navbar-expand-lg shadow-sm" id="mainNav">
  74. <div class="container position-relative p-0">
  75. <a href="{{ config('app.backToInfoSiteUrl') }}"><img class="logo" src="{{ asset('img/logo-rs.svg') }}"></a>
  76. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navBar"
  77. aria-controls="navBar" aria-expanded="false" aria-label="Toggle navigation">
  78. <i class="fas fa-bars"></i>
  79. </button>
  80. <div class="collapse navbar-collapse" id="navBar">
  81. <ul class="navbar-nav ms-auto">
  82. <li class="nav-item me-2">
  83. <a class="d-flex align-items-center" style="text-decoration:none;font-size:14px;" href="{{ config('app.backToInfoSiteUrl') }}"><i
  84. class="me-2 fas fa-home"></i> Back to RecoveryScience.com</a>
  85. </li>
  86. <li class="nav-item">
  87. <a class="d-flex align-items-center" style="text-decoration:none;font-size:14px;" href="tel:{{ config('app.phone') }}"><i
  88. class="me-2 fas fa-mobile-alt"></i> {{ config('app.phone') }}</a>
  89. </li>
  90. </ul>
  91. </div>
  92. </div>
  93. </nav>
  94. <div class="bg-white lh-container">
  95. <div class="lh-form-container container">
  96. @yield('content')
  97. </div>
  98. </div>
  99. <footer class="pt-3">
  100. <div class="container">
  101. <p class="text-sm m-0">At {{ config('app.name') }}, we bridge the gap between healthcare and
  102. management. We understand the challenges that come with managing a medical practice, and our mission is
  103. to alleviate those burdens, allowing healthcare professionals to focus on patient care.</p>
  104. </div>
  105. <div class="bg-sec mt-0 mt-md-4 py-2">
  106. <div class="container">
  107. <p class="text-white m-0 text-center"><small>Copyright © {{ date('Y') }} {{ config('app.name') }}
  108. LLC. All Rights Reserved.</small></p>
  109. </div>
  110. </div>
  111. </footer>
  112. </body>
  113. <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.7/dist/umd/popper.min.js"
  114. integrity="sha384-zYPOMqeu1DAVkHiLqWBUTcbYfZ8osu1Nd6Z89ify25QV9guujx43ITvfi12/QExE" crossorigin="anonymous">
  115. </script>
  116. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.min.js"
  117. integrity="sha384-Y4oOpwW3duJdCWv5ly8SCFYWqFDsfob/3GkgExXKV4idmbt98QcxXYs9UoXAB7BZ" crossorigin="anonymous">
  118. </script>
  119. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.16/jquery.mask.min.js"></script>
  120. <script type="text/javascript">
  121. $('button.nav-link').hover(function() {
  122. $('button.nav-link').removeClass('active');
  123. $(this).addClass('active');
  124. $('.tab-pane.fade').removeClass('show active');
  125. var target = $(this).attr('aria-controls');
  126. $('#' + target).addClass('show active');
  127. })
  128. </script>
  129. <script>
  130. $(document).ready(function() {
  131. $('.phone').mask('(000) 000-0000');
  132. // $('.pass').strengthify({
  133. // zxcvbn: '/js/zxcvbn.js'
  134. // })
  135. });
  136. </script>
  137. </html>