{"id":1068,"date":"2022-06-09T12:33:29","date_gmt":"2022-06-09T12:33:29","guid":{"rendered":"https:\/\/chirp.srgry.com\/aviation\/submit-a-report\/bhdv\/"},"modified":"2024-07-30T09:04:09","modified_gmt":"2024-07-30T08:04:09","slug":"bhdv","status":"publish","type":"page","link":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/","title":{"rendered":"BHDV"},"content":{"rendered":"\n<p>The report forms have been designed for commercial and leisure aviation alike. No entry is mandatory, so you can complete as little or as much of the form as you like. However, CHIRP would always prefer as much detail as possible to be able to assist with and understand your concerns.<\/p>\n\n\n\n<p>You can save the report and come back to it later using the options at the bottom of each step of the process, up to the point of submission.<\/p>\n\n\n<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_12' style='display:none'><div id='gf_12' class='gform_anchor' tabindex='-1'><\/div>\n                        <div class='gform_heading'>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_12' id='gform_12'  action='\/es\/wp-json\/wp\/v2\/pages\/1068#gf_12' data-formid='12' novalidate><input id=partial_entry_id_12 class=\"partial_entry_id\" type=hidden name=\"partial_entry_id\" value=\"pending\" data-form_id=\"12\"\/><div class='gf_invisible ginput_recaptchav3' data-sitekey='6Ldyfa8qAAAAAOumejQB0gvsVUmLRE0mDN1xem2U' data-tabindex='0'><input id=\"input_1f22592cf5125f9bc5fbc5763e3be876\" class=\"gfield_recaptcha_response\" type=\"hidden\" name=\"input_1f22592cf5125f9bc5fbc5763e3be876\" value=\"\"\/><\/div>\n        <div id='gf_progressbar_wrapper_12' class='gf_progressbar_wrapper' data-start-at-zero=''>\n        \t<p class=\"gf_progressbar_title\">Step <span class='gf_step_current_page'>1<\/span> of <span class='gf_step_page_count'>6<\/span><span class='gf_step_page_name'><\/span>\n        \t<\/p>\n            <div class='gf_progressbar gf_progressbar_blue' aria-hidden='true'>\n                <div class='gf_progressbar_percentage percentbar_blue percentbar_16' style='width:16%;'><span>16%<\/span><\/div>\n            <\/div><\/div>\n                        <div class='gform-body gform_body'><div id='gform_page_12_1' class='gform_page ' data-js='page-field-id-0' >\n\t\t\t\t\t<div class='gform_page_fields'><div id='gform_fields_12' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_12_96\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_96'>X\/Twitter<\/label><div class='ginput_container'><input name='input_96' id='input_12_96' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_12_96'>This field is for validation purposes and should be left unchanged.<\/div><\/div><div id=\"field_12_86\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><p>Thank you for your interest in submitting a report to CHIRP Aviation.<\/p>\n<p>It is vital that issues of Bullying, Harassment, Discrimination &amp; Victimisation (BHDV) are addressed. Our role at CHIRP is to anonymously aggregate all report data to build a picture of the prevalence of BHDV in the aviation sector, the human factor and safety impacts this may have, and explore improvements that might be made. Your report and data is vital in helping us to undertake that work.<\/p>\n<p>All submitted reports will be processed and included in disidentified aggregated information that will be passed to the CAA on a regular basis but only CHIRP staff will have access to the reports themselves \u2013 there is no connectivity to CAA systems and\u00a0<strong>reporters&rsquo; details will only be seen by CHIRP staff.<\/strong><\/p>\n<p>Please note that in undertaking this work CHIRP does not investigate individual Bullying, Harassment, Discrimination &amp; Victimisation (BHDV) reports themselves.<\/p>\n<p>The report forms have been designed for commercial and leisure aviation alike. No entry is mandatory, you can complete as little or as much of the form as you like but we would always prefer as much detail as possible in order to understand your concern. You can save the report and come back to it later using the link above, up to the point of submission.<\/p>\n<p><strong>Because CHIRP has no remit or ability to investigate individual reports of BHDV you should only expect to receive an acknowledgement of receipt from CHIRP.<\/strong><\/p>\n<p>Your disidentified report will be aggregated with others&rsquo; to analyse trends and so the more reports and data we have the more we can do to help ensure operations continue safely, so we thank you for taking the time to complete your submission.<\/p>\n<p>If you need further help in support of a BHDV incident then you may wish to consider the following:<\/p>\n<p><u>Internal support from your organisation<\/u>. The level of internal support for BHDV claims will vary from employer to employer but may include:<\/p>\n<p>\u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Internal Procedures, including grievance, bullying and harassment<br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Manager(s)<br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Human Resources<br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Trade Unions<br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Employee Forums \/ Networks<br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Employee Assistance Programmes<br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Occupational Health<br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Any other support an employer offers, such as Mental Health First Aiders<\/p>\n<p><u>External support outside of your organisation<\/u>.<\/p>\n<p>External support for BHDV that is available to all includes:<\/p>\n<p>\u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<a href=\"https:\/\/www.acas.org.uk\/discrimination-bullying-And-harassment\" target=\"_blank\">ACAS<\/a><br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<a href=\"https:\/\/www.nationalbullyinghelpline.co.uk\/employees.html\" target=\"_blank\">National Bullying Helpline<\/a><br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<a href=\"https:\/\/www.citizensadvice.org.uk\/work\/discrimination-at-work\/\" target=\"_blank\">Citizens Advice<\/a><br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<a href=\"https:\/\/www.victimsupport.org.uk\/crime-info\/types-crime\/sexual-harassment\/#:~:Text%20=%20If%20the%20harassment%20happens%20at%20your%20place%20Of,you%E2%80%99Re%20In%20Danger%2C%20call%20the%20police%20on%20999.\" target=\"_blank\">Victim Support<\/a><br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<a href=\"https:\/\/www.cipd.co.uk\/knowledge\/fundamentals\/emp-law\" target=\"_blank\">Employment Law | CIPD<\/a><br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<a href=\"https:\/\/www.legislation.gov.uk\/ukpga\/2010\/15\/contents\" target=\"_blank\">UK Equality Act 2010 (legislation.gov.uk)<\/a><br>\n    \u00b7\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Legal Support, such as Employment Solicitors<\/p>\n<p><br>\n    Kind regards,<\/p>\n<p><strong>The CHIRP Aviation Team<\/strong><\/p><\/div><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                         <input type='button' id='gform_next_button_12_85' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> <button type='button'  id='gform_save_12_2_link' onclick='gform.submission.handleButtonClick(this);' data-submission-type='save-continue' class='gform_save_link gform-theme-button gform-theme-button--secondary button'  ><svg aria-hidden=\"true\" focusable=\"false\" width=\"16\" height=\"16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 8a4 4 0 004 4h3v3a1 1 0 102 0v-3h3a4 4 0 100-8 4 4 0 10-8 0 4 4 0 00-4 4zm9 4H7V7.414L5.707 8.707a1 1 0 01-1.414-1.414l3-3a1 1 0 011.414 0l3 3a1 1 0 01-1.414 1.414L9 7.414V12z\" fill=\"#6B7280\"\/><\/svg> Save and Continue Later<\/button>\n                    <\/div>\n                <\/div>\n                <div id='gform_page_12_2' class='gform_page' data-js='page-field-id-85' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_12_2' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_12_65\" class=\"gfield gfield--type-section gfield--input-type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\">Your personal details<\/h3><\/div><fieldset id=\"field_12_58\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Please select your area\/role<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_58'>\n\t\t\t<div class='gchoice gchoice_12_58_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_FC'  id='choice_12_58_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_0' id='label_12_58_0' class='gform-field-label gform-field-label--type-inline'>Flight Crew (Commercial)<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_Cabin'  id='choice_12_58_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_1' id='label_12_58_1' class='gform-field-label gform-field-label--type-inline'>Cabin Crew<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_ATC'  id='choice_12_58_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_2' id='label_12_58_2' class='gform-field-label gform-field-label--type-inline'>Air traffic control (ATC)<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_Eng'  id='choice_12_58_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_3' id='label_12_58_3' class='gform-field-label gform-field-label--type-inline'>Engineering<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_4'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_GA'  id='choice_12_58_4' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_4' id='label_12_58_4' class='gform-field-label gform-field-label--type-inline'>General Aviation<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_5'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_Display'  id='choice_12_58_5' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_5' id='label_12_58_5' class='gform-field-label gform-field-label--type-inline'>Flight Display<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_6'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_GHGS'  id='choice_12_58_6' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_6' id='label_12_58_6' class='gform-field-label gform-field-label--type-inline'>Ground Handling\/Ground Safety<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_7'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_OrgSM'  id='choice_12_58_7' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_7' id='label_12_58_7' class='gform-field-label gform-field-label--type-inline'>Organisation staff\/management<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_8'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_SEC'  id='choice_12_58_8' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_8' id='label_12_58_8' class='gform-field-label gform-field-label--type-inline'>Security<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_58_9'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_58' type='radio' value='BHDV_Drone'  id='choice_12_58_9' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_58_9' id='label_12_58_9' class='gform-field-label gform-field-label--type-inline'>Unmanned Aircraft Systems\/ Drone Operator<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_3\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_3'>Contact Name<\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_12_3' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_84\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_84'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_84' id='input_12_84' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_12_60\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_60'>Phone<\/label><div class='ginput_container ginput_container_text'><input name='input_60' id='input_12_60' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_6\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-no-icon gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_6'>Date of Birth<\/label><div class='ginput_container ginput_container_date'>\n                            <input name='input_6' id='input_12_6' type='text' value='' class='datepicker gform-datepicker dmy datepicker_no_icon gdatepicker-no-icon'   placeholder='dd\/mm\/yyyy' aria-describedby=\"input_12_6_date_format\" aria-invalid=\"false\" \/>\n                            <span id='input_12_6_date_format' class='screen-reader-text'>DD slash MM slash YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_12_6' class='gform_hidden' value='https:\/\/chirp.co.uk\/app\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><div id=\"field_12_11\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_11'>Organisation<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_11' id='input_12_11' type='text' value='' class='large' maxlength='100'    aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_12\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_12'>Your role\/position at the time of the report<\/label><div class='ginput_container ginput_container_text'><input name='input_12' id='input_12_12' type='text' value='' class='large' maxlength='100'     aria-invalid=\"false\"   \/><\/div><\/div><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_12_18' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Previous'  \/> <input type='button' id='gform_next_button_12_18' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> <button type='button'  id='gform_save_12_3_link' onclick='gform.submission.handleButtonClick(this);' data-submission-type='save-continue' class='gform_save_link gform-theme-button gform-theme-button--secondary button'  ><svg aria-hidden=\"true\" focusable=\"false\" width=\"16\" height=\"16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 8a4 4 0 004 4h3v3a1 1 0 102 0v-3h3a4 4 0 100-8 4 4 0 10-8 0 4 4 0 00-4 4zm9 4H7V7.414L5.707 8.707a1 1 0 01-1.414-1.414l3-3a1 1 0 011.414 0l3 3a1 1 0 01-1.414 1.414L9 7.414V12z\" fill=\"#6B7280\"\/><\/svg> Save and Continue Later<\/button>\n                    <\/div>\n                <\/div>\n                <div id='gform_page_12_3' class='gform_page' data-js='page-field-id-18' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_12_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_12_19\" class=\"gfield gfield--type-section gfield--input-type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\">Your report<\/h3><\/div><div id=\"field_12_77\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_77'>Your Report Title<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_77' id='input_12_77' type='text' value='' class='large' maxlength='256'    aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_78\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_78'>Overall Issue \/ Concern<\/label><div class='ginput_container ginput_container_text'><input name='input_78' id='input_12_78' type='text' value='' class='large' maxlength='50'     aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_82\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_82'>Description of issue\/concern<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_82' id='input_12_82' class='textarea medium'  aria-describedby=\"gfield_description_12_82\" maxlength='4096' placeholder='e.g. Chain of events - Communication - Decision Making - Equipment - Situational Awareness - Weather'  aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><div class='gfield_description' id='gfield_description_12_82'>Additional text exceeding this limit can be submitted as a document attachment on the last page if required<\/div><\/div><fieldset id=\"field_12_64\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Are you reporting a specific incident or event?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_64'>\n\t\t\t<div class='gchoice gchoice_12_64_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_64' type='radio' value='Yes'  id='choice_12_64_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_64_0' id='label_12_64_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_64_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_64' type='radio' value='No'  id='choice_12_64_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_64_1' id='label_12_64_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_20\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-no-icon gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_20'>Incident Date<\/label><div class='ginput_container ginput_container_date'>\n                            <input name='input_20' id='input_12_20' type='text' value='' class='datepicker gform-datepicker dmy datepicker_no_icon gdatepicker-no-icon'   placeholder='dd\/mm\/yyyy' aria-describedby=\"input_12_20_date_format\" aria-invalid=\"false\" \/>\n                            <span id='input_12_20_date_format' class='screen-reader-text'>DD slash MM slash YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_12_20' class='gform_hidden' value='https:\/\/chirp.co.uk\/app\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><div id=\"field_12_22\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_22'>Location of Incident<\/label><div class='ginput_container ginput_container_text'><input name='input_22' id='input_12_22' type='text' value='' class='large' maxlength='100'     aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_12_66\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Was it a one-off incident or repeat incidents?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_66'>\n\t\t\t<div class='gchoice gchoice_12_66_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_66' type='radio' value='Yes'  id='choice_12_66_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_66_0' id='label_12_66_0' class='gform-field-label gform-field-label--type-inline'>One-Off<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_66_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_66' type='radio' value='No'  id='choice_12_66_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_66_1' id='label_12_66_1' class='gform-field-label gform-field-label--type-inline'>Repeat Incidents<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_12_76' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Previous'  \/> <input type='button' id='gform_next_button_12_76' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> <button type='button'  id='gform_save_12_4_link' onclick='gform.submission.handleButtonClick(this);' data-submission-type='save-continue' class='gform_save_link gform-theme-button gform-theme-button--secondary button'  ><svg aria-hidden=\"true\" focusable=\"false\" width=\"16\" height=\"16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 8a4 4 0 004 4h3v3a1 1 0 102 0v-3h3a4 4 0 100-8 4 4 0 10-8 0 4 4 0 00-4 4zm9 4H7V7.414L5.707 8.707a1 1 0 01-1.414-1.414l3-3a1 1 0 011.414 0l3 3a1 1 0 01-1.414 1.414L9 7.414V12z\" fill=\"#6B7280\"\/><\/svg> Save and Continue Later<\/button>\n                    <\/div>\n                <\/div>\n                <div id='gform_page_12_4' class='gform_page' data-js='page-field-id-76' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_12_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_12_63\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >The area\/role of the other party who you experienced the behaviour from? Please select from the following.<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_63'>\n\t\t\t<div class='gchoice gchoice_12_63_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Flight Crew (Commercial)'  id='choice_12_63_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_0' id='label_12_63_0' class='gform-field-label gform-field-label--type-inline'>Flight Crew (Commercial)<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Cabin Crew'  id='choice_12_63_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_1' id='label_12_63_1' class='gform-field-label gform-field-label--type-inline'>Cabin Crew<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Air traffic control (ATC)'  id='choice_12_63_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_2' id='label_12_63_2' class='gform-field-label gform-field-label--type-inline'>Air traffic control (ATC)<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Engineering'  id='choice_12_63_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_3' id='label_12_63_3' class='gform-field-label gform-field-label--type-inline'>Engineering<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_4'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='General Aviation'  id='choice_12_63_4' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_4' id='label_12_63_4' class='gform-field-label gform-field-label--type-inline'>General Aviation<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_5'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Flight Display'  id='choice_12_63_5' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_5' id='label_12_63_5' class='gform-field-label gform-field-label--type-inline'>Flight Display<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_6'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Ground Handling\/Ground Safety'  id='choice_12_63_6' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_6' id='label_12_63_6' class='gform-field-label gform-field-label--type-inline'>Ground Handling\/Ground Safety<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_7'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Organisation staff\/management'  id='choice_12_63_7' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_7' id='label_12_63_7' class='gform-field-label gform-field-label--type-inline'>Organisation staff\/management<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_8'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Security'  id='choice_12_63_8' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_8' id='label_12_63_8' class='gform-field-label gform-field-label--type-inline'>Security<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_9'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='Unmanned Aircraft Systems\/ Drone Operator'  id='choice_12_63_9' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_9' id='label_12_63_9' class='gform-field-label gform-field-label--type-inline'>Unmanned Aircraft Systems\/ Drone Operator<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_63_10'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_63' type='radio' value='gf_other_choice'  id='choice_12_63_10' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_63_10' id='label_12_63_10' class='gform-field-label gform-field-label--type-inline'>Other<\/label><br \/><input id='input_12_63_other' class='gchoice_other_control' name='input_63_other' type='text' value='Other' aria-label='Other Choice, please specify'  disabled='disabled' \/>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_12_90\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full show-descriptions field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >BHDV Category Descriptions &#8211; CLICK to expand<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_12_90'><div class='gchoice gchoice_12_90_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_90.1' type='checkbox'  value='Show'  id='choice_12_90_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_90_1' id='label_12_90_1' class='gform-field-label gform-field-label--type-inline'>Show<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_88\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >\n\t<article class=\"descriptions\">\n\n\t\t<div>\n\n\t\t  <p>\n\t\t\tBelow are some broad descriptions to help you in selection of the right category,\n\t\t\tfor more detail see https:\/\/www.acas.org.uk\/if-youre-treated-unfairly-at-work and\n\t\t\thttps:\/\/www.acas.org.uk\/discrimination-and-the-law.  Note the distinction between\n\t\t\tbullying and harassment in respect of protected characteristics.\n\t\t  <\/p>\n\n\t\t  <p>\n\t\t\t<b>Bullying<\/b> &#8211; Bullying is unwanted behaviour from a person or group that makes you\n\t\t\tfeel uncomfortable;\n\t\tfrightened; intimidated; offended; insulted; less respected or put down; made fun\n\t\tof; or upset. By definition, if the unwanted behaviour involves any of the protected\n\t\t\tcharacteristics of age; pregnancy and maternity; disability; gender reassignment\n\t\t\tor identity; marriage and civil partnership; race; religion or belief; sex; or sexual\n\t\t\torientation then it is not bullying but is harassment (see below).\n\t\t  <\/p>\n\n\t\t  <p>\n\t\t\t<b>Harassment<\/b> \u2013 By definition, harassment is when bullying or other unwanted behaviour\n\t\t\tinvolves, or\n\t\tis because of, any of the protected characteristics of age; pregnancy and maternity;\n\t\t\tdisability; gender reassignment or identity; marriage and civil partnership; race;\n\t\t\treligion or belief; sex; or sexual orientation.  For it to count as harassment,\n\t\t\tthe unwanted behaviour must have either violated the person&#8217;s dignity (whether it\n\t\t\twas intended or not), or have created an intimidating, hostile, degrading, humiliating\n\t\t\tor offensive environment for the person (whether it was intended or not).\n\t\t  <\/p>\n\n\t\t  <p>\n\t\t\t<b>Discrimination<\/b> &#8211; by law, being discriminated against is when you\u2019re treated unfairly\n\t\t\tbecause you\n\t\thave, are perceived to have, or are associated with someone who has any of the protected\n\t\t\tcharacteristics of age; pregnancy and maternity; disability; gender reassignment\n\t\t\tor identity; marriage and civil partnership; race; religion or belief; sex; or sexual\n\t\t\torientation.  It can be against the law for anyone to treat you unfairly because\n\t\t\tof any of these reasons.\n\t\t  <\/p>\n\n\t\t  <p>\n\t\t\t<b>Victimisation<\/b> &#8211; Victimisation is a sub-set of discrimination and involves being\n\t\t\ttreated unfairly\n\t\tbecause you made or supported a complaint to do with discrimination, harassment\n\t\tor a protected characteristic, or someone thinks you did.\n\t\t  <\/p>\n\n\t\t<\/div>\t\n\n\t<\/article><\/div><fieldset id=\"field_12_67\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >How would you classify the behaviour experienced?<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_12_67'><div class='gchoice gchoice_12_67_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_67.1' type='checkbox'  value='BULL'  id='choice_12_67_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_67_1' id='label_12_67_1' class='gform-field-label gform-field-label--type-inline'>Bullying<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_67_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_67.2' type='checkbox'  value='HARA'  id='choice_12_67_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_67_2' id='label_12_67_2' class='gform-field-label gform-field-label--type-inline'>Harassment<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_67_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_67.3' type='checkbox'  value='DISC'  id='choice_12_67_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_67_3' id='label_12_67_3' class='gform-field-label gform-field-label--type-inline'>Discrimination<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_67_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_67.4' type='checkbox'  value='VICT'  id='choice_12_67_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_67_4' id='label_12_67_4' class='gform-field-label gform-field-label--type-inline'>Victimisation<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_67_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_67.5' type='checkbox'  value='IDKn'  id='choice_12_67_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_67_5' id='label_12_67_5' class='gform-field-label gform-field-label--type-inline'>I Don&#8217;t Know<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_12_91\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full show-descriptions field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Characteristic Descriptions<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_12_91'><div class='gchoice gchoice_12_91_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_91.1' type='checkbox'  value='Show'  id='choice_12_91_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_91_1' id='label_12_91_1' class='gform-field-label gform-field-label--type-inline'>Show<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_87\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >\n\t<article class=\"descriptions\">\n\n\t\t<div>\t\n\n\t\t\t<p>\n\t\t\t  Below are some broad descriptions of the UK Equality Act 2010 protected characteristics.\n\t\t\t  You can select as many of these as you think are relevant. \n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  1.     <b>Age<\/b> \u2013 belonging to a particular age or range of ages.\n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  2.     <b>Pregnancy and maternity<\/b> \u2013 treatment of a woman during the protected period\n\t\t\t  from the beginning of\n\t\t\t  pregnancy up until she returns to work from her maternity leave (or two weeks after\n\t\t\t  the end of her pregnancy should she not be entitled to maternity leave).  This includes\n\t\t\t  treating a woman unfavourably because she is breastfeeding. \n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  3.     <b>Disability<\/b> \u2013 includes physical or mental impairment which has (or has had)\n\t\t\t  a substantial and long-term\n\t\t\t  (normally greater than, or predicted to be greater than, 12 months) adverse effect\n\t\t\t  on a person\u2019s ability to carry out day-to-day activities.\n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  4.     <b>Gender reassignment<\/b> \u2013 gender reassignment is a personal process involving\n\t\t\t  moving away from one\u2019s\n\t\t\t  birth sex to a preferred gender, rather than to any medical process.  This can include\n\t\t\t  how a person identifies their gender which could be as non-binary, gender neutral\n\t\t\t  or another term.\n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  5.     <b>Marriage and civil partnership<\/b> \u2013 only people who are married or in a civil\n\t\t\t  partnership are protected\n\t\t\t  against discrimination on this ground. The status of being unmarried or single is\n\t\t\t  not protected.\n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  6.     <b>Race<\/b> \u2013 includes colour, nationality (including citizenship) and ethnic or\n\t\t\t  national origins.\n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  7.     <b>Religion or belief<\/b> \u2013 includes any religion and any religious or philosophical\n\t\t\t  belief that falls\n\t\t\t  within the protection of the Equality Act; it can also include a lack of any such\n\t\t\t  religion or belief.\n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  8.     <b>Sex<\/b> \u2013 a person\u2019s gender. \n\t\t\t<\/p>\n\t\t\t<p>\n\t\t\t  9.     <b>Sexual orientation<\/b> \u2013 a person\u2019s sexual preferences towards: persons of the\n\t\t\t  same sex (that is, the\n\t\t\t  person is a gay man or a lesbian); persons of the opposite sex (that is, the person\n\t\t\t  is heterosexual); or persons of either sex (that is, the person is bisexual).\n\t\t\t<\/p>\n\n\t\t<\/div>\t\n\n\t<\/article><\/div><fieldset id=\"field_12_68\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Do you consider the behaviour experienced was related to any protected characteristic?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_68'>\n\t\t\t<div class='gchoice gchoice_12_68_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_68' type='radio' value='Yes'  id='choice_12_68_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_68_0' id='label_12_68_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_68_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_68' type='radio' value='No'  id='choice_12_68_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_68_1' id='label_12_68_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_12_69\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >What protected characteristic where they related to?<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_12_69'><div class='gchoice gchoice_12_69_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.1' type='checkbox'  value='AGE'  id='choice_12_69_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_1' id='label_12_69_1' class='gform-field-label gform-field-label--type-inline'>Age<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.2' type='checkbox'  value='Dis'  id='choice_12_69_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_2' id='label_12_69_2' class='gform-field-label gform-field-label--type-inline'>Disability<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.3' type='checkbox'  value='Gen'  id='choice_12_69_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_3' id='label_12_69_3' class='gform-field-label gform-field-label--type-inline'>Gender identity\/reassignment<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.4' type='checkbox'  value='Mar'  id='choice_12_69_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_4' id='label_12_69_4' class='gform-field-label gform-field-label--type-inline'>Marriage or civil partnership<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.5' type='checkbox'  value='Pre'  id='choice_12_69_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_5' id='label_12_69_5' class='gform-field-label gform-field-label--type-inline'>Pregnancy and maternity<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.6' type='checkbox'  value='Rac'  id='choice_12_69_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_6' id='label_12_69_6' class='gform-field-label gform-field-label--type-inline'>Race (including colour, nationality, ethnic and national origin)<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.7' type='checkbox'  value='Rel'  id='choice_12_69_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_7' id='label_12_69_7' class='gform-field-label gform-field-label--type-inline'>Religion or belief<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_8'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.8' type='checkbox'  value='Sex'  id='choice_12_69_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_8' id='label_12_69_8' class='gform-field-label gform-field-label--type-inline'>Sex<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_12_69_9'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_69.9' type='checkbox'  value='LGB'  id='choice_12_69_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_12_69_9' id='label_12_69_9' class='gform-field-label gform-field-label--type-inline'>Sexual orientation<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_12_70\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Did the behaviour have any impact on your performance on the day or since the first occurrence of the incident?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_70'>\n\t\t\t<div class='gchoice gchoice_12_70_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_70' type='radio' value='0'  id='choice_12_70_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_70_0' id='label_12_70_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_70_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_70' type='radio' value='1'  id='choice_12_70_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_70_1' id='label_12_70_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_12_71\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Do you perceive that others may have been affected by the incident(s)?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_71'>\n\t\t\t<div class='gchoice gchoice_12_71_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_71' type='radio' value='0'  id='choice_12_71_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_71_0' id='label_12_71_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_71_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_71' type='radio' value='1'  id='choice_12_71_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_71_1' id='label_12_71_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_73\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_73'>Why do you feel that the treatment\/disadvantage may have created a safety concern(s)?<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_73' id='input_12_73' class='textarea small'   maxlength='100'   aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_12_23\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_23'>Have you reported your concerns?<\/label><div class='ginput_container ginput_container_text'><input name='input_23' id='input_12_23' type='text' value='' class='large' maxlength='100'     aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_12_74\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Do you feel that the organisation managed the reported behaviour and its safety implication(s) appropriately<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_12_74'>\n\t\t\t<div class='gchoice gchoice_12_74_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_74' type='radio' value='0'  id='choice_12_74_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_74_0' id='label_12_74_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_12_74_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_74' type='radio' value='1'  id='choice_12_74_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_12_74_1' id='label_12_74_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_12_75\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_75'>Anything else you may consider an important factor in relation to the incident(s)?<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_75' id='input_12_75' class='textarea small'   maxlength='100'   aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_12_94' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Previous'  \/> <input type='button' id='gform_next_button_12_94' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> <button type='button'  id='gform_save_12_5_link' onclick='gform.submission.handleButtonClick(this);' data-submission-type='save-continue' class='gform_save_link gform-theme-button gform-theme-button--secondary button'  ><svg aria-hidden=\"true\" focusable=\"false\" width=\"16\" height=\"16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 8a4 4 0 004 4h3v3a1 1 0 102 0v-3h3a4 4 0 100-8 4 4 0 10-8 0 4 4 0 00-4 4zm9 4H7V7.414L5.707 8.707a1 1 0 01-1.414-1.414l3-3a1 1 0 011.414 0l3 3a1 1 0 01-1.414 1.414L9 7.414V12z\" fill=\"#6B7280\"\/><\/svg> Save and Continue Later<\/button>\n                    <\/div>\n                <\/div>\n                <div id='gform_page_12_5' class='gform_page' data-js='page-field-id-94' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_12_5' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_12_95\" class=\"gfield gfield--type-section gfield--input-type-section gsection field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3 class=\"gsection_title\">Anything else?<\/h3><\/div><div id=\"field_12_79\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_79'>Main Point A<\/label><div class='ginput_container ginput_container_text'><input name='input_79' id='input_12_79' type='text' value='' class='large' maxlength='50'     aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_80\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_80'>Main Point B<\/label><div class='ginput_container ginput_container_text'><input name='input_80' id='input_12_80' type='text' value='' class='large' maxlength='50'     aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_81\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_81'>Main Point C<\/label><div class='ginput_container ginput_container_text'><input name='input_81' id='input_12_81' type='text' value='' class='large' maxlength='50'     aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_83\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_83'>Lessons Learned<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_83' id='input_12_83' class='textarea medium'  aria-describedby=\"gfield_description_12_83\" maxlength='256'   aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><div class='gfield_description' id='gfield_description_12_83'>Additional text exceeding this limit can be submitted as a document attachment on the next page if required<\/div><\/div><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_12_56' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Previous'  \/> <input type='button' id='gform_next_button_12_56' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> <button type='button'  id='gform_save_12_6_link' onclick='gform.submission.handleButtonClick(this);' data-submission-type='save-continue' class='gform_save_link gform-theme-button gform-theme-button--secondary button'  ><svg aria-hidden=\"true\" focusable=\"false\" width=\"16\" height=\"16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 8a4 4 0 004 4h3v3a1 1 0 102 0v-3h3a4 4 0 100-8 4 4 0 10-8 0 4 4 0 00-4 4zm9 4H7V7.414L5.707 8.707a1 1 0 01-1.414-1.414l3-3a1 1 0 011.414 0l3 3a1 1 0 01-1.414 1.414L9 7.414V12z\" fill=\"#6B7280\"\/><\/svg> Save and Continue Later<\/button>\n                    <\/div>\n                <\/div>\n                <div id='gform_page_12_6' class='gform_page' data-js='page-field-id-56' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_12_6' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_12_57\" class=\"gfield gfield--type-fileupload gfield--input-type-fileupload gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='gform_browse_button_12_57'>Upload Files \/ Pictures \/ Documents<\/label><div class='ginput_container ginput_container_fileupload'><div id='gform_multifile_upload_12_57' data-settings='{&quot;runtimes&quot;:&quot;html5,flash,html4&quot;,&quot;browse_button&quot;:&quot;gform_browse_button_12_57&quot;,&quot;container&quot;:&quot;gform_multifile_upload_12_57&quot;,&quot;drop_element&quot;:&quot;gform_drag_drop_area_12_57&quot;,&quot;filelist&quot;:&quot;gform_preview_12_57&quot;,&quot;unique_names&quot;:true,&quot;file_data_name&quot;:&quot;file&quot;,&quot;url&quot;:&quot;https:\\\/\\\/chirp.co.uk\\\/es\\\/wp\\\/?gf_page=9561415636a34dc&quot;,&quot;flash_swf_url&quot;:&quot;https:\\\/\\\/chirp.co.uk\\\/wp\\\/wp-includes\\\/js\\\/plupload\\\/plupload.flash.swf&quot;,&quot;silverlight_xap_url&quot;:&quot;https:\\\/\\\/chirp.co.uk\\\/wp\\\/wp-includes\\\/js\\\/plupload\\\/plupload.silverlight.xap&quot;,&quot;filters&quot;:{&quot;mime_types&quot;:[{&quot;title&quot;:&quot;Allowed Files&quot;,&quot;extensions&quot;:&quot;*&quot;}],&quot;max_file_size&quot;:&quot;20971520b&quot;},&quot;multipart&quot;:true,&quot;urlstream_upload&quot;:false,&quot;multipart_params&quot;:{&quot;form_id&quot;:12,&quot;field_id&quot;:57,&quot;_gform_file_upload_nonce_12_57&quot;:&quot;b12624fef0&quot;},&quot;gf_vars&quot;:{&quot;max_files&quot;:0,&quot;message_id&quot;:&quot;gform_multifile_messages_12_57&quot;,&quot;disallowed_extensions&quot;:[&quot;php&quot;,&quot;asp&quot;,&quot;aspx&quot;,&quot;cmd&quot;,&quot;csh&quot;,&quot;bat&quot;,&quot;html&quot;,&quot;htm&quot;,&quot;hta&quot;,&quot;jar&quot;,&quot;exe&quot;,&quot;com&quot;,&quot;js&quot;,&quot;lnk&quot;,&quot;htaccess&quot;,&quot;phar&quot;,&quot;phtml&quot;,&quot;ps1&quot;,&quot;ps2&quot;,&quot;php3&quot;,&quot;php4&quot;,&quot;php5&quot;,&quot;php6&quot;,&quot;py&quot;,&quot;rb&quot;,&quot;tmp&quot;]}}' class='gform_fileupload_multifile'>\n\t\t\t\t\t\t\t\t\t\t<div id='gform_drag_drop_area_12_57' class='gform_drop_area gform-theme-field-control'>\n\t\t\t\t\t\t\t\t\t\t\t<span class='gform_drop_instructions'>Drop files here or <\/span>\n\t\t\t\t\t\t\t\t\t\t\t<button type='button' id='gform_browse_button_12_57' class='button gform_button_select_files gform-theme-button gform-theme-button--control' aria-describedby=\"gfield_upload_rules_12_57\"  >Select files<\/button>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_12_57'>Max. file size: 20 MB.<\/span><ul class='validation_message--hidden-on-empty gform-ul-reset' id='gform_multifile_messages_12_57'><\/ul> <div id='gform_preview_12_57' class='ginput_preview_list'><\/div><\/div><\/div><div id=\"field_12_92\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_92' id='input_12_92' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/div><div id=\"field_12_93\" class=\"gfield gfield--type-hidden gfield--input-type-hidden gfield--width-full gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_93' id='input_12_93' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='' \/><\/div><\/div><\/div><\/div>\n        <div class='gform-page-footer gform_page_footer top_label'><input type='submit' id='gform_previous_button_12' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Previous'  \/> <input type='submit' id='gform_submit_button_12' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> <button type='button'  id='gform_save_12_footer_link' onclick='gform.submission.handleButtonClick(this);' data-submission-type='save-continue' class='gform_save_link gform-theme-button gform-theme-button--secondary button'  ><svg aria-hidden=\"true\" focusable=\"false\" width=\"16\" height=\"16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 8a4 4 0 004 4h3v3a1 1 0 102 0v-3h3a4 4 0 100-8 4 4 0 10-8 0 4 4 0 00-4 4zm9 4H7V7.414L5.707 8.707a1 1 0 01-1.414-1.414l3-3a1 1 0 011.414 0l3 3a1 1 0 01-1.414 1.414L9 7.414V12z\" fill=\"#6B7280\"\/><\/svg> Save and Continue Later<\/button><input type='hidden' name='gform_ajax' value='form_id=12&amp;title=&amp;description=&amp;tabindex=0&amp;theme=gravity-theme&amp;styles=[]&amp;hash=3b832f8f481629c284865fd15a49d0c6' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_12' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_12' id='gform_theme_12' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_12' id='gform_style_settings_12' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_12' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='12' \/>\n            <input type='hidden' class='gform_hidden' name='gform_save' id='gform_save_12' value='' \/>\n                             <input type='hidden' class='gform_hidden' name='gform_resume_token' id='gform_resume_token_12' value='' \/>\n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='GBP' value='YJSK7NAVBPrWaE2V9WoRW1O6sv04cUWWmCR\/G5CwgW6xhHIhl0uNaPFwQnwkWR1kqHp5pOM5KjD8KAve\/3HHZk2bLsy56xg2lV\/o1wCmGtzrxLc=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_12' value='WyJ7XCI1OFwiOltcImNjYTYxYTBiYWZlMGE3MWZmMWVhZDliYmZiMjg1YWJjXCIsXCIzMmEwMDMwZWY0ZjY0MTZiZThjZGVkMzc1OGFmMGFmM1wiLFwiZWMzYjA5MmU3YWZiNmNkNGIwMDZiY2Y5ZDZjNGQ3MGJcIixcImM1MjFhZTAzY2QxYzliMzIyMWE3Y2U1ZGUyMDc2OTE2XCIsXCI4MGRhZjk1YjcxYTdlNDhhZTlkNjI2ODI5NTA4ZWY1ZVwiLFwiZTI2NDJhYjIwZDI5MWFjNzcwOGEzYmIyYWZhYTM3YTRcIixcImEwZGVkYTdjZDMzMDE1OTM1ZTM4NWU4OGY5NDMzZTg5XCIsXCJlMDNlNTQ3NmJhZDVmMmY5MDM5NzQxNDgzZmZhNGEyY1wiLFwiYTRlMmVjNjYwYzM5MTkyZjg4MDA2NzExODBjYjk5ODRcIixcIjA5MGEyZTVjMjEyMDY1N2JhYjYzMWEyZWNmZWZlYzk4XCJdLFwiNjRcIjpbXCI5YWMzMTVmN2ExNzM2ZTU0ZGNhYTVlMWU3NDRiNDRlYlwiLFwiMmI2ZDI5NGJjNzBiMTczNWQxZTg1ZGI2NTQ1NWQ3MzdcIl0sXCI2NlwiOltcIjlhYzMxNWY3YTE3MzZlNTRkY2FhNWUxZTc0NGI0NGViXCIsXCIyYjZkMjk0YmM3MGIxNzM1ZDFlODVkYjY1NDU1ZDczN1wiXSxcIjYzXCI6W1wiYWVkOWM1MjQ1YjFkMzZjNGI4OTZiNjQzNTFlMTBkMzNcIixcImE5ODdiNTY1MGU2MGEzMTUzMDljZDBiMzNjZjRjNmM1XCIsXCI5NWM2MzY4MDczZDAzNjg5YzI1NGM5Yjc2Y2E3ZGY4NVwiLFwiYjA2NWFhZTYxN2RmNmE1MmYyMjNkMTFmMzNkNDQ1ZTlcIixcImU3ZjM3ZTIyNGQ1ZTYxOWQ3ODJlYTBkNWVlYmFmNzBkXCIsXCJiZmQ3ZDJkN2Y0ODE4ZjMxMjJmZDYxZWFjOTk5NjhkMVwiLFwiOTIzYWYyMmMwMTVhZGIyMjdkMzkyN2U0MmQ1OGMxMThcIixcImYxNjBiZTQ3ZWVmZmJhYTkwMWI1NDBkYTE1ZTNhODk3XCIsXCI4NTY0N2JkZDRlOGRmNjczMTkzZDc2NzA0NzQ1OTE0OVwiLFwiOWIyZmI4NmY3MGFhODUxNTA2MjFkZDQ4NzFjZWVkY2NcIl0sXCI2OFwiOltcIjlhYzMxNWY3YTE3MzZlNTRkY2FhNWUxZTc0NGI0NGViXCIsXCIyYjZkMjk0YmM3MGIxNzM1ZDFlODVkYjY1NDU1ZDczN1wiXSxcIjcwXCI6W1wiZGI4YTdhMWEwZmYzODBhZmVhZjUwZTBmYmRlMWU1ZDhcIixcImM1YzJkMWQwMGYzYWNjNjY1NzE0MjNjMGFmZTBjNDc0XCJdLFwiNzFcIjpbXCJkYjhhN2ExYTBmZjM4MGFmZWFmNTBlMGZiZGUxZTVkOFwiLFwiYzVjMmQxZDAwZjNhY2M2NjU3MTQyM2MwYWZlMGM0NzRcIl0sXCI3NFwiOltcImRiOGE3YTFhMGZmMzgwYWZlYWY1MGUwZmJkZTFlNWQ4XCIsXCJjNWMyZDFkMDBmM2FjYzY2NTcxNDIzYzBhZmUwYzQ3NFwiXX0iLCIwZTFjODBmNmYzYjYyMGJhMjQ2NDg3ZDA4MzJjMTE4ZSJd' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_12' id='gform_target_page_number_12' value='2' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_12' id='gform_source_page_number_12' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            <input type='hidden' name='gform_uploaded_files' id='gform_uploaded_files_12' value='' \/>\n        <\/div>\n             <\/div><\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_12' id='gform_ajax_frame_12' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 12, 'https:\/\/chirp.co.uk\/app\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_12').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_12');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_12').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_12').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_12').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_12').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_12').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_12').val();gformInitSpinner( 12, 'https:\/\/chirp.co.uk\/app\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [12, current_page]);window['gf_submitting_12'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_12').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_12').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [12]);window['gf_submitting_12'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_12').text());}else{jQuery('#gform_12').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"12\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_12\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_12\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_12\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 12, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>The report forms have been designed for commercial and leisure aviation alike. No entry is mandatory, so you can complete as little or as much of the form as you like. However, CHIRP would always prefer as much detail as possible to be able to assist with and understand your concerns. You can save the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":899,"menu_order":9,"comment_status":"closed","ping_status":"closed","template":"wp-custom-template-aviation-no-sidebar","meta":{"_acf_changed":false,"CBBTypography":[],"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"sector":[11],"class_list":["post-1068","page","type-page","status-publish","hentry","sector-aviation"],"acf":[],"mb":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>BHDV - CHIRP<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BHDV - CHIRP\" \/>\n<meta property=\"og:description\" content=\"The report forms have been designed for commercial and leisure aviation alike. No entry is mandatory, so you can complete as little or as much of the form as you like. However, CHIRP would always prefer as much detail as possible to be able to assist with and understand your concerns. You can save the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/\" \/>\n<meta property=\"og:site_name\" content=\"CHIRP\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-30T08:04:09+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/\",\"url\":\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/\",\"name\":\"BHDV - CHIRP\",\"isPartOf\":{\"@id\":\"https:\/\/chirp.co.uk\/es\/#website\"},\"datePublished\":\"2022-06-09T12:33:29+00:00\",\"dateModified\":\"2024-07-30T08:04:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/#breadcrumb\"},\"inLanguage\":\"es-ES\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/chirp.co.uk\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Aviation\",\"item\":\"https:\/\/chirp.co.uk\/es\/aviation\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Submit a Report\",\"item\":\"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"BHDV\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/chirp.co.uk\/es\/#website\",\"url\":\"https:\/\/chirp.co.uk\/es\/\",\"name\":\"CHIRP\",\"description\":\"Confidential Human Factors Incident Reporting Programme\",\"publisher\":{\"@id\":\"https:\/\/chirp.co.uk\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/chirp.co.uk\/es\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es-ES\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/chirp.co.uk\/es\/#organization\",\"name\":\"CHIRP\",\"url\":\"https:\/\/chirp.co.uk\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\/\/chirp.co.uk\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/chirp.co.uk\/app\/uploads\/2024\/07\/chirp-logo-blue.svg\",\"contentUrl\":\"https:\/\/chirp.co.uk\/app\/uploads\/2024\/07\/chirp-logo-blue.svg\",\"caption\":\"CHIRP\"},\"image\":{\"@id\":\"https:\/\/chirp.co.uk\/es\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"BHDV - CHIRP","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/","og_locale":"es_ES","og_type":"article","og_title":"BHDV - CHIRP","og_description":"The report forms have been designed for commercial and leisure aviation alike. No entry is mandatory, so you can complete as little or as much of the form as you like. However, CHIRP would always prefer as much detail as possible to be able to assist with and understand your concerns. You can save the [&hellip;]","og_url":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/","og_site_name":"CHIRP","article_modified_time":"2024-07-30T08:04:09+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/","url":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/","name":"BHDV - CHIRP","isPartOf":{"@id":"https:\/\/chirp.co.uk\/es\/#website"},"datePublished":"2022-06-09T12:33:29+00:00","dateModified":"2024-07-30T08:04:09+00:00","breadcrumb":{"@id":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/#breadcrumb"},"inLanguage":"es-ES","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/bhdv\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chirp.co.uk\/es\/"},{"@type":"ListItem","position":2,"name":"Aviation","item":"https:\/\/chirp.co.uk\/es\/aviation\/"},{"@type":"ListItem","position":3,"name":"Submit a Report","item":"https:\/\/chirp.co.uk\/es\/aviation\/submit-a-report\/"},{"@type":"ListItem","position":4,"name":"BHDV"}]},{"@type":"WebSite","@id":"https:\/\/chirp.co.uk\/es\/#website","url":"https:\/\/chirp.co.uk\/es\/","name":"CHIRP","description":"Confidential Human Factors Incident Reporting Programme","publisher":{"@id":"https:\/\/chirp.co.uk\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chirp.co.uk\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es-ES"},{"@type":"Organization","@id":"https:\/\/chirp.co.uk\/es\/#organization","name":"CHIRP","url":"https:\/\/chirp.co.uk\/es\/","logo":{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/chirp.co.uk\/es\/#\/schema\/logo\/image\/","url":"https:\/\/chirp.co.uk\/app\/uploads\/2024\/07\/chirp-logo-blue.svg","contentUrl":"https:\/\/chirp.co.uk\/app\/uploads\/2024\/07\/chirp-logo-blue.svg","caption":"CHIRP"},"image":{"@id":"https:\/\/chirp.co.uk\/es\/#\/schema\/logo\/image\/"}}]}},"wpml_current_locale":"en_UK","wpml_translations":[],"mfb_rest_fields":["title","yoast_head","yoast_head_json","wpml_current_locale","wpml_translations"],"_links":{"self":[{"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/pages\/1068","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/comments?post=1068"}],"version-history":[{"count":0,"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/pages\/1068\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/pages\/899"}],"wp:attachment":[{"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/media?parent=1068"}],"wp:term":[{"taxonomy":"sector","embeddable":true,"href":"https:\/\/chirp.co.uk\/es\/wp-json\/wp\/v2\/sector?post=1068"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}