Report a Workplace Incident

Please complete and submit the below form.

An AMIEU Organiser will be in contact with you shortly.

    The AMIEU will NEVER share your information or submissions with your employer or anyone else





    Alternatively, give us a call on (02) 4929 5496 to speak to someone from our team.


    Join Online Now

    document.addEventListener('DOMContentLoaded', function() { // Adjust the selector if you have multiple forms const form = document.querySelector('.elementor-form'); if (!form) return; // Stop if no form found // Get the BSB field by Field ID const bsbField = form.querySelector('#bsb'); // #bsb = Field ID from Step 1 if (!bsbField) return; form.addEventListener('submit', function(e) { const bsbValue = bsbField.value.trim(); const regex = /^\d{3}-\d{3}$/; // Matches 000-000 format if (!regex.test(bsbValue)) { alert('Please enter a valid BSB in the format 000-000'); bsbField.focus(); e.preventDefault(); // Stop form submission } }); });