

/* ================= AJAX CHECK ================= */

add_action('wp_ajax_canahr_check','canahr_check');
add_action('wp_ajax_nopriv_canahr_check','canahr_check');

function canahr_check(){

```
global $wpdb;

$table = $wpdb->prefix . 'canahr_offer_letters';

$passport = strtoupper(trim($_POST['passport']));

$row = $wpdb->get_row(
    $wpdb->prepare(
        "SELECT pdf_url FROM $table WHERE passport=%s",
        $passport
    )
);

if($row){
    wp_send_json_success([
        'pdf' => $row->pdf_url
    ]);
}else{
    wp_send_json_error();
}
```

}

/* ================= SHORTCODE ================= */

add_shortcode('canahr_offer_letter', function(){

ob_start();
?>

<div style="display:flex;justify-content:center;padding:20px">

<div style="max-width:420px;width:100%;background:#fff;padding:30px;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.1);text-align:center">

<input
id="canahr_passport"
placeholder="Passport Number"
style="width:100%;padding:14px;border-radius:10px;border:1px solid #ccc;text-align:center"

>

<button
id="canahr_btn"
style="width:100%;margin-top:18px;padding:14px;border:none;border-radius:10px;background:#28a745;color:#fff;font-size:16px"

>

Check Status </button>

<div id="canahr_result" style="margin-top:25px"></div>

</div>
</div>

<script>

jQuery('#canahr_btn').click(function(){

let p = jQuery('#canahr_passport').val().trim();

jQuery('#canahr_result').html('Please wait...');

jQuery.post(
'https://canahr.com/wp-admin/admin-ajax.php',
{
action:'canahr_check',
passport:p
},
function(res){

if(res.success){

jQuery('#canahr_result').html(`
<iframe src="${res.data.pdf}"
style="width:100%;height:420px;border-radius:12px">
</iframe>

<a href="${res.data.pdf}"
target="_blank"
style="display:block;margin-top:15px;color:#28a745;font-weight:bold">
Download Offer Letter
</a>
`);

}else{

jQuery('#canahr_result').html(
'<div style="background:#fdecec;padding:15px;border-radius:12px;">' +
'<strong>No Offer Letter Found</strong><br><br>' +
'For further assistance contact:<br>' +
'<strong>+44 7447 229500</strong>' +
'</div>'
);
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://canahr.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://canahr.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://canahr.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://canahr.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://canahr.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
