confirm-auth-token.blade.php 1.0 KB

1234567891011121314151617181920212223242526272829
  1. @extends('layouts.login')
  2. @section('content')
  3. <div class="blue-card p-4">
  4. <form action="{{route('process-confirm-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>
  14. <strong>
  15. Please enter the confirmation token.
  16. </strong>
  17. </label>
  18. <input class="form-control phone" name="confirmation_token" autofocus value="{{old('confirmation_token')}}">
  19. </div>
  20. <div class="row">
  21. <div class="col-12 text-center">
  22. <input type="submit" name="sendToken" value="Confirm Token" class="btn btn-primary btn-sm w-100 py-2">
  23. </div>
  24. </div>
  25. </form>
  26. <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>
  27. </div>
  28. @endsection