login.blade.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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="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.">
  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/style.css')}}" rel=stylesheet>
  14. <link href="{{asset('css/landing.css')}}" rel=stylesheet>
  15. <script src="https://cdn.jsdelivr.net/npm/vue@2.6.0"></script>
  16. <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
  17. <script src='https://www.google.com/recaptcha/api.js'></script>
  18. </head>
  19. <body>
  20. <nav id="top" class="navbar navbar-expand-lg navbar-light bg-white d-flex align-items-center justify-content-between">
  21. <div class="container justify-content-center justify-content-md-start">
  22. <a class="navbar-brand" href="{{route('login')}}"><img src="/img/logo.svg" alt="Logo" height="50"> </a>
  23. </div>
  24. <div class="collapse navbar-collapse dashboard-nav" id="navBar">
  25. <ul class="navbar-nav ml-auto">
  26. <li class="nav-item">
  27. <a class="d-flex align-items-center text-dark" href="{{ config('app.backToLeadershipHealthUrl') }}">
  28. <img class="mr-1" height="20" src="{{asset('img/chart.svg')}}">Back to LeadershipHealth.org
  29. </a>
  30. </li>
  31. </ul>
  32. </div>
  33. </nav>
  34. <hr class="m-0">
  35. <div class="welcome-container">
  36. <div class="container my-3 my-md-4 my-lg-5">
  37. <div class="row">
  38. <div class="col-lg-7">
  39. <h4 class="title">Find the rewarding career you’ve been looking for at Leadership Health.</h4>
  40. <p>Thank you for your interest in working with LeadershipHealth.</p>
  41. <p>We use this portal to:</p>
  42. <ul class="icon-list">
  43. <li>Organize the HR process.</li>
  44. <li>Coordinate communication with your dedicated HR representative.</li>
  45. <li>Test your webcam and/or smartphone to confirm that your hardware is ready for telehealth.</li>
  46. </ul>
  47. </div>
  48. <div class="col-lg-5">
  49. @yield('content')
  50. </div>
  51. </div>
  52. </div>
  53. @include('landing')
  54. </div>
  55. <footer class="bg-light-grey d-flex align-items-center flex-column border-top">
  56. <div class="py-3">
  57. <p class="mb-0 text-center"><small>Copyright &copy; {{getdate()["year"]}} LeadershipHealth LLC. All rights reserved.</small> </p>
  58. </div>
  59. </footer>
  60. </body>
  61. <script src="/vendor/bootstrap/popper.min.js"></script>
  62. <script src="/vendor/bootstrap/bootstrap.min.js"></script>
  63. </html>