confirm-auth-token.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930
  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 d-flex align-items-center my-3">
  6. <img src="/img/icon.svg" alt="Logo" height="35">
  7. <h5 class="font-weight-bold ml-2 mb-0">Confirm Token</h5>
  8. </div>
  9. @csrf
  10. @if(session('message'))
  11. <div class="alert alert-info">{{session('message')}}</div>
  12. @endif
  13. <div class="form-group">
  14. <label>
  15. <strong>
  16. Please enter the confirmation token.
  17. </strong>
  18. </label>
  19. <input class="form-control" name="confirmation_token" autocomplete="off" autofocus value="{{old('confirmation_token')}}">
  20. </div>
  21. <div class="row">
  22. <div class="col-12 text-center">
  23. <input type="submit" name="sendToken" value="Confirm Token" class="btn btn-orange btn-sm w-100 py-2">
  24. </div>
  25. </div>
  26. </form>
  27. <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>
  28. </div>
  29. @endsection