1234567891011121314151617181920212223242526272829 |
- @extends('layouts.login')
- @section('content')
- <div class="blue-card p-4">
- <form action="{{route('process-confirm-auth-token')}}" method="post">
- <div class="text-center my-3">
- <img src="/img/logo.svg" alt="Logo" height="35">
- </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 phone" name="confirmation_token" 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-primary 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
|