login_with_content.blade.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>Leadership Health | The Highest Quality of Care</title>
  9. <meta name="description" 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.">
  10. <link rel="icon" href={{asset('img/icon.svg')}}>
  11. <link rel="stylesheet" href="/vendor/bootstrap/bootstrap.min.css">
  12. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
  13. <link href="{{ asset('/css/strengthify.min.css') }}" rel="stylesheet">
  14. <link href="{{asset('css/style.css')}}" rel=stylesheet>
  15. <link href="{{asset('css/skin.css')}}" rel=stylesheet>
  16. <link href="{{asset('css/landing.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="{{asset('js/jquery.mask.js')}}"></script>
  20. <script src="{{ asset('/js/jquery.strengthify.min.js') }}"></script>
  21. <script src='https://www.google.com/recaptcha/api.js'></script>
  22. <script>
  23. $(function() {
  24. $.ajaxSetup({
  25. headers: {
  26. 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
  27. }
  28. });
  29. });
  30. </script>
  31. <!-- Hotjar Tracking Code for https://hr.leadershiphealth.org -->
  32. <script>
  33. (function(h,o,t,j,a,r){
  34. h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
  35. h._hjSettings={hjid:2302901,hjsv:6};
  36. a=o.getElementsByTagName('head')[0];
  37. r=o.createElement('script');r.async=1;
  38. r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
  39. a.appendChild(r);
  40. })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
  41. </script>
  42. </head>
  43. <body>
  44. <nav class="navbar navbar-expand-lg py-1">
  45. <div class="container-fluid position-relative">
  46. <a href="{{ route('login') }}"><img class="logo" src="{{asset('img/logo.svg')}}"></a>
  47. <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navBar" aria-controls="navBar" aria-expanded="false" aria-label="Toggle navigation">
  48. <i class="fas fa-bars"></i>
  49. </button>
  50. <div class="collapse navbar-collapse mobile" id="navBar">
  51. <ul class="navbar-nav ml-auto">
  52. <li class="nav-item">
  53. <a class="d-flex align-items-center text-dark" href="{{ config('app.backToLeadershipHealthUrl') }}">
  54. <img class="mr-1" height="20" src="{{asset('img/chart.svg')}}">Back to LeadershipHealth.org
  55. </a>
  56. </li>
  57. </ul>
  58. </div>
  59. </div>
  60. </nav>
  61. <hr class="m-0">
  62. <div class="welcome-container">
  63. <div class="container my-3 my-md-4 my-lg-5">
  64. <div class="row">
  65. <div class="col-lg-7">
  66. <h4 class="title">Find the rewarding career you’ve been looking for at Leadership Health.</h4>
  67. <p>Thank you for your interest in working with LeadershipHealth.</p>
  68. <p>We use this portal to:</p>
  69. <ul class="icon-list">
  70. <li>Organize the HR process.</li>
  71. <li>Coordinate communication with our HR team.</li>
  72. <li>Test your webcam and/or smartphone to confirm that your hardware is ready for telehealth.</li>
  73. </ul>
  74. </div>
  75. <div class="col-lg-5">
  76. @yield('content')
  77. </div>
  78. </div>
  79. </div>
  80. @include('landing')
  81. </div>
  82. <footer class="bg-light-grey d-flex align-items-center flex-column border-top">
  83. <div class="py-3">
  84. <p class="mb-0 text-center"><small>Copyright &copy; {{getdate()["year"]}} LeadershipHealth LLC. All rights reserved.</small> </p>
  85. </div>
  86. </footer>
  87. </body>
  88. <script src="/vendor/bootstrap/popper.min.js"></script>
  89. <script src="/vendor/bootstrap/bootstrap.min.js"></script>
  90. <script>
  91. $(document).ready(function() {
  92. $('.phone').mask('000-000-0000');
  93. $('.pass').strengthify({
  94. zxcvbn:'/js/zxcvbn.js'
  95. })
  96. });
  97. </script>
  98. </html>