{"id":1958,"date":"2016-09-29T18:56:41","date_gmt":"2016-09-29T18:56:41","guid":{"rendered":"http:\/\/canada.dev.afssite.afs.org\/?page_id=1958"},"modified":"2016-11-14T16:46:01","modified_gmt":"2016-11-14T16:46:01","slug":"inquiry-for-host-families","status":"publish","type":"page","link":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/","title":{"rendered":"Inquiries for host families"},"content":{"rendered":"<script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\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\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_4' >\n                        <div class='gform_heading'>\n                            <h3 class=\"gform_title\">Accueil \/ Hosting<\/h3>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_4'  action='\/en\/wp-json\/wp\/v2\/pages\/1958' data-formid='4' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_2\" class=\"gfield gfield--type-text 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_4_2'>Nom \/ Last Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_4_2' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_17\" class=\"gfield gfield--type-text 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_4_17'>Pr\u00e9nom \/ First Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_17' id='input_4_17' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_10\" class=\"gfield gfield--type-date gfield--input-type-datedropdown gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gf-date gf-date-layout-datedropdown\"  data-field-class=\"gf-date gf-date-layout-datedropdown\" ><label class='gfield_label gform-field-label' >Date de naissance \/ date of birth<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div id='input_4_10' class='ginput_container ginput_complex gform-grid-row'><div class=\"clear-multi\"><div class='gfield_date_dropdown_month ginput_container ginput_container_date gform-grid-col' id='input_4_10_1_container'><label for='input_4_10_1' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Mois<\/label><select name='input_10[]' id='input_4_10_1'   aria-required='true'  ><option value=''>Mois<\/option><option value='1' >1<\/option><option value='2' >2<\/option><option value='3' >3<\/option><option value='4' >4<\/option><option value='5' >5<\/option><option value='6' >6<\/option><option value='7' >7<\/option><option value='8' >8<\/option><option value='9' >9<\/option><option value='10' >10<\/option><option value='11' >11<\/option><option value='12' >12<\/option><\/select><\/div><div class='gfield_date_dropdown_day ginput_container ginput_container_date gform-grid-col' id='input_4_10_2_container'><label for='input_4_10_2' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Jour<\/label><select name='input_10[]' id='input_4_10_2'   aria-required='true'  ><option value=''>Jour<\/option><option value='1' >1<\/option><option value='2' >2<\/option><option value='3' >3<\/option><option value='4' >4<\/option><option value='5' >5<\/option><option value='6' >6<\/option><option value='7' >7<\/option><option value='8' >8<\/option><option value='9' >9<\/option><option value='10' >10<\/option><option value='11' >11<\/option><option value='12' >12<\/option><option value='13' >13<\/option><option value='14' >14<\/option><option value='15' >15<\/option><option value='16' >16<\/option><option value='17' >17<\/option><option value='18' >18<\/option><option value='19' >19<\/option><option value='20' >20<\/option><option value='21' >21<\/option><option value='22' >22<\/option><option value='23' >23<\/option><option value='24' >24<\/option><option value='25' >25<\/option><option value='26' >26<\/option><option value='27' >27<\/option><option value='28' >28<\/option><option value='29' >29<\/option><option value='30' >30<\/option><option value='31' >31<\/option><\/select><\/div><div class='gfield_date_dropdown_year ginput_container ginput_container_date gform-grid-col' id='input_4_10_3_container'><label for='input_4_10_3' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Ann\u00e9e<\/label><select name='input_10[]' id='input_4_10_3'   aria-required='true'  ><option value=''>Ann\u00e9e<\/option><option value='2027' >2027<\/option><option value='2026' >2026<\/option><option value='2025' >2025<\/option><option value='2024' >2024<\/option><option value='2023' >2023<\/option><option value='2022' >2022<\/option><option value='2021' >2021<\/option><option value='2020' >2020<\/option><option value='2019' >2019<\/option><option value='2018' >2018<\/option><option value='2017' >2017<\/option><option value='2016' >2016<\/option><option value='2015' >2015<\/option><option value='2014' >2014<\/option><option value='2013' >2013<\/option><option value='2012' >2012<\/option><option value='2011' >2011<\/option><option value='2010' >2010<\/option><option value='2009' >2009<\/option><option value='2008' >2008<\/option><option value='2007' >2007<\/option><option value='2006' >2006<\/option><option value='2005' >2005<\/option><option value='2004' >2004<\/option><option value='2003' >2003<\/option><option value='2002' >2002<\/option><option value='2001' >2001<\/option><option value='2000' >2000<\/option><option value='1999' >1999<\/option><option value='1998' >1998<\/option><option value='1997' >1997<\/option><option value='1996' >1996<\/option><option value='1995' >1995<\/option><option value='1994' >1994<\/option><option value='1993' >1993<\/option><option value='1992' >1992<\/option><option value='1991' >1991<\/option><option value='1990' >1990<\/option><option value='1989' >1989<\/option><option value='1988' >1988<\/option><option value='1987' >1987<\/option><option value='1986' >1986<\/option><option value='1985' >1985<\/option><option value='1984' >1984<\/option><option value='1983' >1983<\/option><option value='1982' >1982<\/option><option value='1981' >1981<\/option><option value='1980' >1980<\/option><option value='1979' >1979<\/option><option value='1978' >1978<\/option><option value='1977' >1977<\/option><option value='1976' >1976<\/option><option value='1975' >1975<\/option><option value='1974' >1974<\/option><option value='1973' >1973<\/option><option value='1972' >1972<\/option><option value='1971' >1971<\/option><option value='1970' >1970<\/option><option value='1969' >1969<\/option><option value='1968' >1968<\/option><option value='1967' >1967<\/option><option value='1966' >1966<\/option><option value='1965' >1965<\/option><option value='1964' >1964<\/option><option value='1963' >1963<\/option><option value='1962' >1962<\/option><option value='1961' >1961<\/option><option value='1960' >1960<\/option><option value='1959' >1959<\/option><option value='1958' >1958<\/option><option value='1957' >1957<\/option><option value='1956' >1956<\/option><option value='1955' >1955<\/option><option value='1954' >1954<\/option><option value='1953' >1953<\/option><option value='1952' >1952<\/option><option value='1951' >1951<\/option><option value='1950' >1950<\/option><option value='1949' >1949<\/option><option value='1948' >1948<\/option><option value='1947' >1947<\/option><option value='1946' >1946<\/option><option value='1945' >1945<\/option><option value='1944' >1944<\/option><option value='1943' >1943<\/option><option value='1942' >1942<\/option><option value='1941' >1941<\/option><option value='1940' >1940<\/option><option value='1939' >1939<\/option><option value='1938' >1938<\/option><option value='1937' >1937<\/option><option value='1936' >1936<\/option><option value='1935' >1935<\/option><option value='1934' >1934<\/option><option value='1933' >1933<\/option><option value='1932' >1932<\/option><option value='1931' >1931<\/option><option value='1930' >1930<\/option><option value='1929' >1929<\/option><option value='1928' >1928<\/option><option value='1927' >1927<\/option><option value='1926' >1926<\/option><option value='1925' >1925<\/option><option value='1924' >1924<\/option><option value='1923' >1923<\/option><option value='1922' >1922<\/option><option value='1921' >1921<\/option><option value='1920' >1920<\/option><\/select><\/div><\/div><\/div><\/li><li id=\"field_4_3\" class=\"gfield gfield--type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gf-email form-control-icon\"  data-field-class=\"gf-email form-control-icon\" ><label class='gfield_label gform-field-label' for='input_4_3'>Courriel \/ 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_3' id='input_4_3' type='email' value='' class='medium'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_4_4\" class=\"gfield gfield--type-address gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gf-address form-control-icon-complex\"  data-field-class=\"gf-address form-control-icon-complex\" ><label class='gfield_label gform-field-label gfield_label_before_complex' >Adresse \/ Address<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label>    \n                    <div class='ginput_complex ginput_container has_street has_city has_state has_zip ginput_container_address gform-grid-row' id='input_4_4' >\n                         <span class='ginput_full address_line_1 ginput_address_line_1 gform-grid-col' id='input_4_4_1_container' >\n                                        <input type='text' name='input_4.1' id='input_4_4_1' value=''    aria-required='true'    \/>\n                                        <label for='input_4_4_1' id='input_4_4_1_label' class='gform-field-label gform-field-label--type-sub '>Street Address<\/label>\n                                    <\/span><span class='ginput_left address_city ginput_address_city gform-grid-col' id='input_4_4_3_container' >\n                                    <input type='text' name='input_4.3' id='input_4_4_3' value=''    aria-required='true'    \/>\n                                    <label for='input_4_4_3' id='input_4_4_3_label' class='gform-field-label gform-field-label--type-sub '>Ville \/ City<\/label>\n                                 <\/span><span class='ginput_right address_state ginput_address_state gform-grid-col' id='input_4_4_4_container' >\n                                        <select name='input_4.4' id='input_4_4_4'     aria-required='true'    ><option value='' selected='selected'><\/option><option value='Alberta' >Alberta<\/option><option value='British Columbia' >British Columbia<\/option><option value='Manitoba' >Manitoba<\/option><option value='New Brunswick' >New Brunswick<\/option><option value='Newfoundland and Labrador' >Newfoundland and Labrador<\/option><option value='Northwest Territories' >Northwest Territories<\/option><option value='Nova Scotia' >Nova Scotia<\/option><option value='Nunavut' >Nunavut<\/option><option value='Ontario' >Ontario<\/option><option value='Prince Edward Island' >Prince Edward Island<\/option><option value='Quebec' >Quebec<\/option><option value='Saskatchewan' >Saskatchewan<\/option><option value='Yukon' >Yukon<\/option><\/select>\n                                        <label for='input_4_4_4' id='input_4_4_4_label' class='gform-field-label gform-field-label--type-sub '>Province<\/label>\n                                      <\/span><span class='ginput_left address_zip ginput_address_zip gform-grid-col' id='input_4_4_5_container' >\n                                    <input type='text' name='input_4.5' id='input_4_4_5' value=''    aria-required='true'    \/>\n                                    <label for='input_4_4_5' id='input_4_4_5_label' class='gform-field-label gform-field-label--type-sub '>Postal Code<\/label>\n                                <\/span><input type='hidden' class='gform_hidden' name='input_4.6' id='input_4_4_6' value='Canada' \/>\n                    <div class='gf_clear gf_clear_complex'><\/div>\n                <\/div><\/li><li id=\"field_4_6\" class=\"gfield gfield--type-text 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_4_6'>No. de t\u00e9l\u00e9phone \/ Phone number<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_6' id='input_4_6' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_5\" class=\"gfield gfield--type-textarea field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gf-textarea\"  data-field-class=\"gf-textarea\" ><label class='gfield_label gform-field-label' for='input_4_5'>Commentaires \/ Comments<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_5' id='input_4_5' class='textarea medium'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_4_7\" class=\"gfield gfield--type-checkbox gfield--type-choice field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gf-checkbox\"  data-field-class=\"gf-checkbox\" ><label class='gfield_label gform-field-label gfield_label_before_complex' >Je d\u00e9sire \/ I want<\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_4_7'><li class='gchoice gchoice_4_7_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_7.1' type='checkbox'  value='Informations'  id='choice_4_7_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_7_1' id='label_4_7_1' class='gform-field-label gform-field-label--type-inline'>Informations<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_4_7_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_7.2' type='checkbox'  value='Application'  id='choice_4_7_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_7_2' id='label_4_7_2' class='gform-field-label gform-field-label--type-inline'>Application<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_15\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gf-checkbox\"  data-field-class=\"gf-checkbox\" ><label class='gfield_label gform-field-label gfield_label_before_complex' >Comment avez-vous entendu parler d&#039;AFS?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_4_15'><li class='gchoice gchoice_4_15_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_15.1' type='checkbox'  value='R\u00e9union d&#039;information \/ Information meeting'  id='choice_4_15_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_15_1' id='label_4_15_1' class='gform-field-label gform-field-label--type-inline'>R\u00e9union d'information \/ Information meeting<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_4_15_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_15.2' type='checkbox'  value='Facebook'  id='choice_4_15_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_15_2' id='label_4_15_2' class='gform-field-label gform-field-label--type-inline'>Facebook<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_4_15_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_15.3' type='checkbox'  value='Instagram'  id='choice_4_15_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_15_3' id='label_4_15_3' class='gform-field-label gform-field-label--type-inline'>Instagram<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_4_15_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_15.4' type='checkbox'  value='Site Internet \/ Website'  id='choice_4_15_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_15_4' id='label_4_15_4' class='gform-field-label gform-field-label--type-inline'>Site Internet \/ Website<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_4_15_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_15.5' type='checkbox'  value='Infolettre \/ Newsletter'  id='choice_4_15_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_15_5' id='label_4_15_5' class='gform-field-label gform-field-label--type-inline'>Infolettre \/ Newsletter<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_4_15_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_15.6' type='checkbox'  value='Famille-Amis \/ Family-Friends'  id='choice_4_15_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_15_6' id='label_4_15_6' class='gform-field-label gform-field-label--type-inline'>Famille-Amis \/ Family-Friends<\/label>\n\t\t\t\t\t\t\t<\/li><li class='gchoice gchoice_4_15_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_15.7' type='checkbox'  value='Comission scolaire-\u00e9cole \/ School'  id='choice_4_15_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_15_7' id='label_4_15_7' class='gform-field-label gform-field-label--type-inline'>Comission scolaire-\u00e9cole \/ School<\/label>\n\t\t\t\t\t\t\t<\/li><\/ul><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Soumettre \/ Submit'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='CAD' value='IvrPFzD\/wWpnybLC6dtl9BLZtGb63Bgd8iqdBTtoN3B3vyaN44yBevVM\/hlXM\/oILKy7XOetzCYeDcWIvbOqwLvndKYML\/rTmhzDZ\/b6rGdY0+k=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJbXSIsIjRmOWQ1OWY1NTJhYzU0ZTdlMGY5ZGJlODVjYWY2MDJiIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 4, 'https:\/\/dev.afscanada.org\/wp-content\/themes\/core\/img\/gravity-forms\/spinner.svg', true );jQuery('#gform_ajax_frame_4').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_4');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_4').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){jQuery('#gform_wrapper_4').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_4').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_4').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_4').val();gformInitSpinner( 4, 'https:\/\/dev.afscanada.org\/wp-content\/themes\/core\/img\/gravity-forms\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [4, current_page]);window['gf_submitting_4'] = 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_4').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [4]);window['gf_submitting_4'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_4').text());}else{jQuery('#gform_4').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"4\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_4\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_4\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_4\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, 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\/* ]]> *\/\n<\/script>\n\n<h1>or<\/h1>\n","protected":false},"excerpt":{"rendered":"<p>or<\/p>\n","protected":false},"author":13,"featured_media":2022,"parent":189,"menu_order":2,"comment_status":"closed","ping_status":"closed","template":"","meta":{"content-type":"","footnotes":""},"class_list":["post-1958","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Inquiries for host families - AFS Canada<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inquiries for host families - AFS Canada\" \/>\n<meta property=\"og:description\" content=\"or\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/\" \/>\n<meta property=\"og:site_name\" content=\"AFS Canada\" \/>\n<meta property=\"article:modified_time\" content=\"2016-11-14T16:46:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578-1200x630.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/\",\"url\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/\",\"name\":\"Inquiries for host families - AFS Canada\",\"isPartOf\":{\"@id\":\"https:\/\/canada.dev.afssite.afs.org\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578.jpg\",\"datePublished\":\"2016-09-29T18:56:41+00:00\",\"dateModified\":\"2016-11-14T16:46:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#primaryimage\",\"url\":\"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578.jpg\",\"contentUrl\":\"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578.jpg\",\"width\":1356,\"height\":1059},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dev.afscanada.org\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Welcome the world into your home\",\"item\":\"https:\/\/dev.afscanada.org\/en\/host-an-afser\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Inquiries for host families\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/canada.dev.afssite.afs.org\/en\/#website\",\"url\":\"https:\/\/canada.dev.afssite.afs.org\/en\/\",\"name\":\"AFS Canada\",\"description\":\"AFS International in Canada\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/canada.dev.afssite.afs.org\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inquiries for host families - AFS Canada","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Inquiries for host families - AFS Canada","og_description":"or","og_url":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/","og_site_name":"AFS Canada","article_modified_time":"2016-11-14T16:46:01+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578-1200x630.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/","url":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/","name":"Inquiries for host families - AFS Canada","isPartOf":{"@id":"https:\/\/canada.dev.afssite.afs.org\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#primaryimage"},"image":{"@id":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#primaryimage"},"thumbnailUrl":"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578.jpg","datePublished":"2016-09-29T18:56:41+00:00","dateModified":"2016-11-14T16:46:01+00:00","breadcrumb":{"@id":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#primaryimage","url":"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578.jpg","contentUrl":"https:\/\/d22dvihj4pfop3.cloudfront.net\/wp-content\/uploads\/sites\/4\/2016\/09\/30184802\/11145090_1031820260175430_8207985833681738003_o-e1480357091578.jpg","width":1356,"height":1059},{"@type":"BreadcrumbList","@id":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/inquiry-for-host-families\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dev.afscanada.org\/en\/"},{"@type":"ListItem","position":2,"name":"Welcome the world into your home","item":"https:\/\/dev.afscanada.org\/en\/host-an-afser\/"},{"@type":"ListItem","position":3,"name":"Inquiries for host families"}]},{"@type":"WebSite","@id":"https:\/\/canada.dev.afssite.afs.org\/en\/#website","url":"https:\/\/canada.dev.afssite.afs.org\/en\/","name":"AFS Canada","description":"AFS International in Canada","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/canada.dev.afssite.afs.org\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/pages\/1958","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/comments?post=1958"}],"version-history":[{"count":8,"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/pages\/1958\/revisions"}],"predecessor-version":[{"id":3434,"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/pages\/1958\/revisions\/3434"}],"up":[{"embeddable":true,"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/pages\/189"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/media\/2022"}],"wp:attachment":[{"href":"https:\/\/dev.afscanada.org\/en\/wp-json\/wp\/v2\/media?parent=1958"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}