login.blade.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @extends('layouts.login')
  2. @section('content')
  3. <div id="formView" class="blue-card p-4">
  4. <form action="{{route('send-sms-auth-token')}}" method="post">
  5. <div class="text-center my-3">
  6. <img src="/img/logo.svg" alt="Logo" height="35">
  7. </div>
  8. @csrf
  9. @if(session('message'))
  10. <div class="alert alert-info">{{session('message')}}</div>
  11. @endif
  12. <div class="form-group">
  13. <label>Enter Your Mobile Number (to receive an SMS token)</label>
  14. <input type="tel" class="form-control phone" name="cell_number" value="{{old('cell_number')}}">
  15. <small class="d-block mt-2 mb-3 text-dark text-center">
  16. *Your mobile provider's standard rates for sending and receiving text messages will apply.
  17. </small>
  18. </div>
  19. <div class="form-group">
  20. <div class="g-recaptcha" data-sitekey="{{config('services.recaptcha.key')}}">
  21. </div>
  22. </div>
  23. @error('g-recaptcha-response')
  24. <small>
  25. Please confirm your are not a robot.
  26. </small>
  27. @enderror
  28. <div class="row">
  29. <div class="col-12 text-center">
  30. <input type="submit" name="sendToken" value="Send SMS Token" class="btn btn-orange text-uppercase w-100 py-2">
  31. </div>
  32. </div>
  33. <p><small class="text-center d-block text-muted my-3">If you have any questions at all, please contact your Dedicated HR Representative at the phone number or email displayed inside this portal.</small></p>
  34. </form>
  35. </div>
  36. @endsection