www.frontiersresearch.ae
Open in
urlscan Pro
2606:4700:4400::ac40:9861
Public Scan
URL:
https://www.frontiersresearch.ae/
Submission: On September 29 via api from US — Scanned from DE
Submission: On September 29 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMPOST /tenant_leads
<form id="new_lead_2bdc983494" action="/tenant_leads" accept-charset="UTF-8" data-remote="true" method="post">
<input name="utf8" type="hidden" value="✓" autocomplete="off"><input type="hidden" name="tenant_lead[page_url]" value="https://www.frontiersresearch.ae/">
<label for="new_lead_2bdc983494-email" class="form__label"> Email </label>
<input id="new_lead_2bdc983494-email" type="email" name="tenant_lead[email]" value="" placeholder="Enter your email" autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false" required="" aria-required="true" class="form__control"
aria-describedby="new_lead_2bdc983494-error">
<p aria-live="polite" id="new_lead_2bdc983494-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
<div class="form__group">
<div>
<input id="new_lead_2bdc983494-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="" aria-required="true" aria-describedby="new_lead_2bdc983494-accept-error">
<label for="new_lead_2bdc983494-accept" class="form__label--checkbox">Yes please, save my details so you can send me educational content that is relevant and helpful.</label>
</div>
<p aria-live="polite" id="new_lead_2bdc983494-accept-error" class="form__error-msg hidden" role="alert"> Please check this box if you wish to proceed </p>
</div>
<div class="form__group form__button-group">
<input id="new_lead_2bdc983494-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit" aria-disabled="true">
<p class="lead-capture__success-msg sr-only">Thank You</p>
<p aria-live="polite" class="lead-capture__error-msg" role="alert"> Oops, something went wrong. Please try again with a different email address. </p>
</div>
<script>
$(function() {
$("#new_lead_2bdc983494 > input[name='tenant_lead[page_url]']").val(window.location.href)
});
document.getElementById('new_lead_2bdc983494').addEventListener('thinkific:success', function(event) {
$('#new_lead_2bdc983494-submit-lead').val("Thank You");
$('#new_lead_2bdc983494').addClass('lead-capture__success')
$('#new_lead_2bdc983494 .lead-capture__error-msg').hide();
$('#new_lead_2bdc983494 .lead-capture__success-msg').show();
setTimeout(function() {
$('#new_lead_2bdc983494-submit-lead').val('Submit');
$('#new_lead_2bdc983494').removeClass('lead-capture__success')
$('#new_lead_2bdc983494')[0].reset();
$('#new_lead_2bdc983494-submit-lead').attr('aria-disabled', 'true');
}, 6000);
})
document.getElementById('new_lead_2bdc983494').addEventListener('thinkific:error', function(event) {
$('#new_lead_2bdc983494 .lead-capture__error-msg').show();
$('#new_lead_2bdc983494 .lead-capture__success-msg').hide();
})
$('#new_lead_2bdc983494-accept').on('click', function() {
if ($('#new_lead_2bdc983494-accept').is(':checked')) {
$('#new_lead_2bdc983494-submit-lead').removeAttr('aria-disabled');
} else {
$('#new_lead_2bdc983494-submit-lead').attr('aria-disabled', 'true');
}
});
</script>
<script>
function addErrorMsg(fieldId, errorId) {
fieldId.addClass('input--error');
fieldId.attr("aria-invalid", "true");
errorId.removeClass('hidden');
}
function removeErrorMsg(fieldId, errorId) {
fieldId.removeClass('input--error');
fieldId.attr("aria-invalid", "false");
errorId.addClass('hidden');
}
var regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
var $email = $('#user\\[email\\]');
var $emailError = $('#user\\[email\\]-error')
$email.on('focusout', function() {
if (!regex.test($email.val())) {
addErrorMsg($email, $emailError);
} else {
removeErrorMsg($email, $emailError);
}
});
var $leadCapture = $('#new_lead_2bdc983494-email')
var $leadCaptureError = $('#new_lead_2bdc983494-error')
$leadCapture.on('focusout', function() {
if (!regex.test($leadCapture.val())) {
addErrorMsg($leadCapture, $leadCaptureError);
} else {
removeErrorMsg($leadCapture, $leadCaptureError);
}
});
var $leadCaptureCheckbox = $('#new_lead_2bdc983494-accept');
var $leadCaptureCheckboxError = $('#new_lead_2bdc983494-accept-error');
$leadCaptureCheckbox.on('focusout', function() {
if (!$leadCaptureCheckbox.is(':checked')) {
addErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
} else {
removeErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
}
});
var $password = $('#user\\[password\\]');
var $passwordError = $('#user\\[password\\]-error')
$password.on('focusout', function() {
if ($password.val().length < 1) {
addErrorMsg($password, $passwordError);
} else {
removeErrorMsg($password, $passwordError);
}
});
var $firstName = $('#user\\[first_name\\]');
var $firstNameError = $('#user\\[first_name\\]-error');
$firstName.on('focusout', function() {
if ($firstName.val() === '') {
addErrorMsg($firstName, $firstNameError);
} else {
removeErrorMsg($firstName, $firstNameError);
}
});
var $lastName = $('#user\\[last_name\\]');
var $lastNameError = $('#user\\[last_name\\]-error');
$lastName.on('focusout', function() {
if ($lastName.val() === '') {
addErrorMsg($lastName, $lastNameError);
} else {
removeErrorMsg($lastName, $lastNameError);
}
});
var $checkbox = $('#user\\[terms\\]');
var $checkboxError = $('#user\\[terms\\]-error');
$checkbox.on('focusout', function() {
if (!$checkbox.is(':checked')) {
addErrorMsg($checkbox, $checkboxError);
} else {
removeErrorMsg($checkbox, $checkboxError);
}
});
var $file = $('.my-account__avatar-label');
$file.on('change', function() {
$file.append('<p aria-live="polite" id="my-account__avatar--error" class="sr-only" role="alert">liquid.partials.form.file_changed</p>')
});
var $select = $('.custom-select');
var $selectError = $('#custom-select-error')
$select.on('focusout', function() {
if ($(this).prop('required')) {
if (!$select.val()) {
addErrorMsg($select, $selectError);
} else {
removeErrorMsg($select, $selectError);
}
}
});
var $customField = $('.custom-field');
var $customFieldError = $('#custom-field-error');
$customField.on('focusout', function() {
if ($(this).prop('required')) {
if ($customField.val() === '') {
addErrorMsg($customField, $customFieldError);
} else {
removeErrorMsg($customField, $customFieldError);
}
}
});
</script>
</form>
Text Content
Skip to main content FRONTIERS RESEARCH Toggle menu Menu * Home * Sign In HELPING RESEARCHERS BUILD STRONG PERSONAL BRANDS, COMMUNICATE AND LEAD WITH IMPACT, EFFECTIVELY MARKET THEIR WORK, AND CULTIVATE A MINDSET FOR SUCCESS. Sign-up BUILD YOUR CAREER WITH THE BRIDGE TM STRATEGY Building Researcher Influence, Developing Growth, and Excellence A personalized roadmap to enhance your visibility, leadership, and career growth, the BRIDGE™ Strategy offers tailored solutions in branding, communication, marketing, and mindset development. This approach helps you build a strong academic presence, lead with impact, and achieve long-term success. The BRIDGE™ Program, designed for students and early-career researchers, emphasizes experiential learning through reflection, hands-on practice, and observation. It fosters a growth mindset, improves research communication, and elevates your profile, enabling you to build professional connections, position yourself as an expert, and promote your publications effectively. Learn more OUR PURPOSE Frontiers Research was founded with the goal of supporting the clinical research and pharmaceutical communities. We recognize the need for a centralized platform to connect researchers, provide quality training resources, and facilitate collaboration. OUR APPROACH We aim to be a practical and reliable partner for our members. Our solutions reflect the day-to-day challenges faced by clinical researchers and students. We focus on delivering useful tools, relevant knowledge, and opportunities for meaningful connection. Our solutions are designed to provide researchers with the skills and strategies they need to drive sustainable progress. BE THE FIRST TO GET UPDATES! Email Please enter a valid email address Yes please, save my details so you can send me educational content that is relevant and helpful. Please check this box if you wish to proceed Thank You Oops, something went wrong. Please try again with a different email address. ALL PRODUCTS * Pre-order now! THE BRIDGE STRATEGY Course View more products * Home * Privacy Notice * * © Copyright Frontiers Research 2024 Teach online with Thinkific Open in a new window