123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="csrf-token" content="{{ csrf_token() }}">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>Leadership Health | The Highest Quality of Care</title>
- <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.">
- <link rel="icon" href={{asset('img/icon.svg')}}>
- <link rel="stylesheet" href="/vendor/bootstrap/bootstrap.min.css">
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
- <link href="{{asset('css/style.css')}}" rel=stylesheet>
- <link href="{{asset('css/landing.css')}}" rel=stylesheet>
- <script src="https://cdn.jsdelivr.net/npm/vue@2.6.0"></script>
- <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
- <script src='https://www.google.com/recaptcha/api.js'></script>
- </head>
- <body>
- <nav id="top" class="navbar navbar-expand-lg navbar-light bg-white d-flex align-items-center justify-content-between">
- <div class="container justify-content-center justify-content-md-start">
- <a class="navbar-brand" href="{{route('login')}}"><img src="/img/logo.svg" alt="Logo" height="50"> </a>
- </div>
- <div class="collapse navbar-collapse dashboard-nav" id="navBar">
- <ul class="navbar-nav ml-auto">
- <li class="nav-item">
- <a class="d-flex align-items-center text-dark" href="{{ config('app.backToLeadershipHealthUrl') }}">
- <img class="mr-1" height="20" src="{{asset('img/chart.svg')}}">Back to LeadershipHealth.org
- </a>
- </li>
- </ul>
- </div>
- </nav>
- <hr class="m-0">
- <div class="welcome-container">
- <div class="container my-3 my-md-4 my-lg-5">
- <div class="row">
- <div class="col-lg-7">
- <h4 class="title">Find the rewarding career you’ve been looking for at Leadership Health.</h4>
- <p>Thank you for your interest in working with LeadershipHealth.</p>
- <p>We use this portal to:</p>
- <ul class="icon-list">
- <li>Organize the HR process.</li>
- <li>Coordinate communication with your dedicated HR representative.</li>
- <li>Test your webcam and/or smartphone to confirm that your hardware is ready for telehealth.</li>
- </ul>
- </div>
- <div class="col-lg-5">
- @yield('content')
- </div>
- </div>
- </div>
- @include('landing')
- </div>
- <footer class="bg-light-grey d-flex align-items-center flex-column border-top">
- <div class="py-3">
- <p class="mb-0 text-center"><small>Copyright © {{getdate()["year"]}} LeadershipHealth LLC. All rights reserved.</small> </p>
- </div>
- </footer>
- </body>
- <script src="/vendor/bootstrap/popper.min.js"></script>
- <script src="/vendor/bootstrap/bootstrap.min.js"></script>
- </html>
|