spattered.thinkific.com Open in urlscan Pro
54.243.250.147  Public Scan

URL: https://spattered.thinkific.com/pages/bpa-training-hub
Submission Tags: falconsandbox
Submission: On February 16 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

POST /tenant_leads

<form id="new_lead_b0f307c4e5" 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://spattered.thinkific.com/pages/bpa-training-hub">
  <label for="new_lead_b0f307c4e5-email" class="form__label"> Email </label>
  <input id="new_lead_b0f307c4e5-email" type="email" name="tenant_lead[email]" value="" placeholder="Enter your email" autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false" required="" class="form__control"
    aria-describedby="new_lead_b0f307c4e5-error">
  <p id="new_lead_b0f307c4e5-error" class="form__error-msg hidden" role="alert">Please enter a valid email address</p>
  <div class="form__group">
    <input id="new_lead_b0f307c4e5-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="">
    <label for="new_lead_b0f307c4e5-accept">Yes please, save my details so you can send me educational content that is relevant and helpful.</label>
  </div>
  <div class="form__group form__button-group">
    <input id="new_lead_b0f307c4e5-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit" disabled="">
    <p class="lead_capture-error" role="alert">Oops, something went wrong. Please try again with a different email address.</p>
  </div>
  <script>
    $(function() {
      $("#new_lead_b0f307c4e5 > input[name='tenant_lead[page_url]']").val(window.location.href)
    });
    document.getElementById('new_lead_b0f307c4e5').addEventListener('thinkific:success', function(event) {
      $('#new_lead_b0f307c4e5-submit-lead').val("Thank You");
      $('#new_lead_b0f307c4e5').addClass('lead_capture-success')
      $('#new_lead_b0f307c4e5 .lead_capture-error').hide();
      setTimeout(function() {
        $('#new_lead_b0f307c4e5-submit-lead').val('Submit');
        $('#new_lead_b0f307c4e5').removeClass('lead_capture-success')
        $('#new_lead_b0f307c4e5')[0].reset();
        $('#new_lead_b0f307c4e5-submit-lead').attr('disabled', 'disabled');
      }, 6000);
    })
    document.getElementById('new_lead_b0f307c4e5').addEventListener('thinkific:error', function(event) {
      $('#new_lead_b0f307c4e5 .lead_capture-error').show();
    })
    $('#new_lead_b0f307c4e5-accept').on('click', function() {
      if ($('#new_lead_b0f307c4e5-accept').is(':checked')) {
        $('#new_lead_b0f307c4e5-submit-lead').removeAttr('disabled');
      } else {
        $('#new_lead_b0f307c4e5-submit-lead').attr('disabled', 'disabled');
      }
    });
  </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_b0f307c4e5-email')
    var $leadCaptureError = $('#new_lead_b0f307c4e5-error')
    $leadCapture.on('focusout', function() {
      if (!regex.test($leadCapture.val())) {
        addErrorMsg($leadCapture, $leadCaptureError);
      } else {
        removeErrorMsg($leadCapture, $leadCaptureError);
      }
    });
    var $password = $('#user\\[password\\]');
    var $passwordError = $('#user\\[password\\]-error')
    $password.on('focusout', function() {
      if ($password.val().length < 6) {
        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 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


SPATTER/ED

Toggle menu Menu
 * All Courses
 * About Spattered
 * Sign In


TAKE OUR FLAGSHIP ONLINE COURSE: INTRODUCTION TO BPA

Learn about BPA and develop the skills to identify bloodstains and interpret
bloodstain patterns, over the course of 3 MODULES, from renowned experts in the
field. Price: £250 (includes VAT).

Sign me up ...


JOIN OUR BPA FAMILY!

Add your email to the mailing list to get our latest BPA updates. You might also
like our free BPA webinar (scroll down!)

Email

Please enter a valid email address

Yes please, save my details so you can send me educational content that is
relevant and helpful.

Oops, something went wrong. Please try again with a different email address.

Watch Intro Video


VIDEO


WHAT YOU'LL LEARN

This course provides foundation training in Bloodstain Pattern Analysis (BPA).
It is designed to help build an understanding of the contribution that BPA can
offer to a police investigation and outlines the science that underpins the
discipline.

 * Develop an understanding of the science behind BPA

 * Learn how to recognise and objectively classify bloodstains

 * Investigate the mechanisms that generate bloodstain patterns

 * See how BPA can be effectively applied in the investigation of crime

 * 
 * 


LEARN FROM BPA SCIENTISTS!

Read more about our expert instructor:


LEAD INSTRUCTOR

Jo Millington

Jo is a forensic scientist and specialist in Bloodstain Pattern Analysis. Jo has
been involved in the design and delivery of BPA training for over 20 years and
has delivered hundreds of training courses to a broad spectrum of practitioners
from all over the world. She recently launched SPATTER/ED to provide a dedicated
space for BPA Training and Education. Jo is so excited to be able to offer
specialist training to practitioners and enthusiasts alike, so that they can
start to recognise the benefits that BPA can offer to an investigation and build
the skills that they need to use BPA in their own fields. Jo is our lead BPA
instructor and you are in good hands!
Email


 * 


WHO CAN BENEFIT FROM THIS COURSE?

The Introduction to BPA Training course has been running for many years as a
face-to-face course. We are really excited to be bring it online! It is
particularly suitable for:

 * Forensic Practitioners

 * Crime Scene Professionals & Police Practitioners

 * The Legal Profession: Barristers, Solicitors, Judges

 * Students, including those studying forensic science

 * Medical & Pathology Personnel

 * Casual enthusiasts & Dexter fans!


REASONS PEOPLE TAKE THIS COURSE


 * CONTINUING EDUCATION
   
   " I took this course to supplement the BPA awareness training that I had
   received during my undergraduate degree at university. It really helped to
   build my knowledge and improve my CV! "


 * CONTINUING PROFESSIONAL DEVELOPMENT
   
   " I'm a Crime Scene Investigator and I took this course to build my BPA
   skills. It has helped me to recognise bloodstain patterns, and understand how
   to improve the evidential value of blood found at crime scenes. "


 * DEVELOPING FORENSIC UNDERSTANDING
   
   " I'm a barrister and I regularly deal with cases where forensic science, and
   BPA is involved. I wanted to update my knowledge but also improve my
   understanding of how BPA can be used in the criminal cases that I deal with.
   "


PRICING OPTIONS: GROUP OFFERS

We offer group subscriptions to this training course for universities &
professional organisations


 * GROUP TRAINING
   
   If you are part of an organisation and would like to purchase this course for
   your team, we offer a range of discounted packages for GROUPS. Just drop us a
   line and we will be able to work out a solution so that your whole team can
   learn about BPA ... together! EMAIL: team@spattered.co.uk for more info!


 * DEALS FOR UNIVERSITIES
   
   Do you offer courses on forensic science? We offer a range of pricing options
   for UNIVERSITIES so that your students can access this professional BPA
   training course, either as part of your prospectus or as an extra-curricular
   bonus. EMAIL: team@spattered.co.uk for more info!


CHECK OUT OUR FREE BPA WEBINAR

A Whistle-stop tour of BPA

 * All Courses
   
   
   BPA: WHISTLE-STOP TOUR
   
   This FREE webinar provides a whistle-stop tour of the discipline of BPA. It
   is particularly suitable for forensic scientists, pathologists, medics,
   police officers, crime scene personnel, lawyers, judges, students and those
   with an interest in it!
   
   3 Lessons Free
   

Go to our FREE WEBINAR


WANT TO FIND OUT MORE ABOUT SPATTER/ED?

You can find out more about our work on our website. We offer a range of
training courses that are designed to enhance BPA understanding, including
online and classroom-based training modules each of which can be supplemented
with a range of practical sessions. You can also follow Bracken the collie's BPA
journey through her 'BPA Dog Blog'!
Check out our website


NEED MORE INFORMATION?

GET IN TOUCH WITH US

 * Home
 * All Courses

 * 
 * 
 * 

© Copyright SPATTER/ED 2023
Teach online with Thinkific Open in a new window