The title Recruitment Consultant is a contradiction. 99% of recruitment consultants should be titled ‘Recruitment kid on phone with no agenda but their own.’
The founders of Inward are recruiters and salespeople. We have to achieve and for us to achieve, you have to achieve.
Talk to Inward about our unique candidate attraction model. Talk to Inward about our unique approach to understanding a brief. Talk to Inward if winning is a must, not a want. Talk to Inward if you strive for insight.
Our story
Fact 1
The founders of Inward were recruiting salespeople before salesforce revolutionised the cloud market and have the benefit of 20+ years of hindsight, insight and foresight. We’ve seen companies hire well and companies hire badly. We’ve seen candidates become millionaires and candidates fall from grace. We know what works.
Fact 2
87% of the briefs we are working on at any time are repeat clients who come back to us repeatedly.
Fact 3
Call us right now and tell us about your recruitment challenges. If at the end of the call you think we have wasted your time, misunderstood you or done a bad job we’ll pay £150 to a charity of your choice. No quibble.
"A doctor advises you on health, a lawyer on legal matters, an accountant on tax. If you want the best advice on hiring in the tech sector, talk to Inward."
Without the insight, you can’t deliver. Without delivery, the insight in worthless.
[code_snippet id=5 format]
document.addEventListener( 'wpcf7submit', function( event ) {
if ( '654' == event.detail.contactFormId )
{
var inputs = event.detail.inputs;
console.log(inputs);
for ( var i = 0; i < inputs.length; i++ )
{
if ( 'Title' == inputs[i].name ) {
var post_title = inputs[i].value;
}
if ( 'FirstName' == inputs[i].name ) {
var first_name = inputs[i].value;
}
if ( 'LastName' == inputs[i].name ) {
var last_name = inputs[i].value;
}
if ( 'Email' == inputs[i].name ) {
var email = inputs[i].value;
}
if ( 'Phonenumber' == inputs[i].name ) {
var phone_number = inputs[i].value;
}
if ( 'LinkedinProfile' == inputs[i].name ) {
var linked_profile = inputs[i].value;
}
if ( 'lookingforrole' == inputs[i].name ) {
var looking_role = inputs[i].value;
}
if ( 'CurrentBasicSalary' == inputs[i].name ) {
var currentsal = inputs[i].value;
}
}
var ajaxurl = jQuery('#ajaxurl').val();
var datasend = {
action : 'save_active_data',
post_title : post_title,
first_name : first_name,
last_name : last_name,
email : email,
phone_number : phone_number,
linked_profile : linked_profile,
looking_role : looking_role,
currentsal : currentsal,
}
jQuery.ajax( {
url: ajaxurl,
type: 'post',
dataType: 'json',
data: datasend,
success( data ) {
console.log(data);
},
} );
}
}, false );