123456789101112131415161718192021222324252627282930 |
- @extends('layouts.login')
- @section('content')
- <div class="blue-card p-4">
- <form action="{{route('process-confirm-auth-token')}}" method="post">
- <div class="text-center d-flex align-items-center my-3">
- <img src="/img/icon.svg" alt="Logo" height="35">
- <h5 class="font-weight-bold ml-2 mb-0">Confirm Token</h5>
- </div>
- @csrf
- @if(session('message'))
- <div class="alert alert-info">{{session('message')}}</div>
- @endif
- <div class="form-group">
- <label>
- <strong>
- Please enter the confirmation token.
- </strong>
- </label>
- <input class="form-control" name="confirmation_token" autocomplete="off" autofocus value="{{old('confirmation_token')}}">
- </div>
- <div class="row">
- <div class="col-12 text-center">
- <input type="submit" name="sendToken" value="Confirm Token" class="btn btn-orange btn-sm w-100 py-2">
- </div>
- </div>
- </form>
- <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>
- </div>
- @endsection
|