login.blade.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @extends('layouts.login')
  2. @section('content')
  3. <style>
  4. .salutation {
  5. font-weight: bold;
  6. font-size: 1.2em;
  7. }
  8. </style>
  9. <div class="container my-3 my-md-4 my-lg-5">
  10. <div class="row">
  11. <div class="col-lg-8 offset-lg-2">
  12. <div id="formView" class="card px-0 px-md-4">
  13. <div class="card-body">
  14. <div>
  15. <h3 class="text-blue">
  16. <strong>
  17. Welcome to LeadershipHealth HR!
  18. </strong>
  19. </h3>
  20. <hr>
  21. <p>
  22. Thank you for your interest in working with LeadershipHealth.
  23. </p>
  24. <p>
  25. We use this portal to:
  26. </p>
  27. <ol class="ml-0 ml-md-4 pl-3 pl-md-4">
  28. <li>
  29. Organize the HR process.
  30. </li>
  31. <li>
  32. Coordinate communication with your dedicated HR representative.
  33. </li>
  34. <li>
  35. Test your webcam and/or smartphone to confirm that your hardware is ready for
  36. telehealth.
  37. </li>
  38. </ol>
  39. <p>
  40. This brief online form is the first step in our HR process - and will allow us to
  41. quickly assign the appropriate Dedicated HR Representative to your account
  42. who will be available to you by phone and email to ensure all your
  43. questions get answered and that your onboarding process goes smoothly.
  44. </p>
  45. <p>
  46. <strong>
  47. If you have any questions at all, please contact your Dedicated HR
  48. Representative at the phone number or email displayed inside this portal.
  49. </strong> Talk to you soon! 😊
  50. </p>
  51. </div>
  52. <hr>
  53. <form action="{{route('send-sms-auth-token')}}" method="post">
  54. @csrf
  55. @if(session('message'))
  56. <div class="alert alert-info">{{session('message')}}</div>
  57. @endif
  58. <div class="form-group">
  59. <label>
  60. <strong>
  61. Please enter your cell phone number (to receive an SMS token).
  62. </strong>
  63. </label>
  64. <input type="tel" class="form-control phone" name="cell_number" autofocus value="{{old('cell_number')}}">
  65. <small>
  66. *Your mobile provider's standard rates for sending and receiving text messages will
  67. apply.
  68. </small>
  69. </div>
  70. <div class="form-group">
  71. <div class="g-recaptcha" data-sitekey="{{config('services.recaptcha.key')}}">
  72. </div>
  73. </div>
  74. @error('g-recaptcha-response')
  75. <small>
  76. Please confirm your are not a robot.
  77. </small>
  78. @enderror
  79. <div class="row">
  80. <div class="col-12 text-center">
  81. <input type="submit" name="sendToken" value="Submit" class="btn btn-sm btn-primary px-5 py-2">
  82. </div>
  83. </div>
  84. </form>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. @endsection