{"id":3382,"date":"2023-12-08T12:29:06","date_gmt":"2023-12-08T11:29:06","guid":{"rendered":"https:\/\/2024.vehicle-2-grid.eu\/submit-a-poster\/"},"modified":"2024-02-01T13:36:32","modified_gmt":"2024-02-01T12:36:32","slug":"submit-a-poster","status":"publish","type":"page","link":"https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/","title":{"rendered":"Submit a poster"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"3382\" class=\"elementor elementor-3382 elementor-3355\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-51f7243 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"51f7243\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7ec255c\" data-id=\"7ec255c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-defde14 elementor-widget elementor-widget-heading\" data-id=\"defde14\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Poster-upload<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c2bd795 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"c2bd795\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-info-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Submissions are welcome until 25 March 2024<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a50b20b eael-gravity-form-button-custom elementor-widget elementor-widget-eael-gravity-form\" data-id=\"a50b20b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-gravity-form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<div class=\"eael-contact-form eael-gravity-form title-description-hide eael-custom-radio-checkbox eael-contact-form-align-default\">\n\t\t        \t\t\t\t\t<div class=\"eael-gravity-form-heading\">\n\t\t\t\t        \t\t\t\t        \t\t\t\t\t<\/div>\n\t\t        \n            <script type=\"text\/javascript\">\n                \/* EA Gravity Forms - fallback dispatch of GF's per-form post-render event.\n                 *\n                 * GF normally dispatches this itself from GFFormDisplay::footer_init_scripts().\n                 * In render contexts where that never runs, GF add-ons that bind to\n                 * `gform\/post_render` - e.g. the reCAPTCHA Add-On v2.2.2+, which registers its\n                 * v3 token submission filter there - are never initialised.\n                 *\n                 * Dispatching unconditionally is not safe. GF's multi-file uploader calls\n                 * `new plupload.Uploader()` on every post_render with no idempotency guard\n                 * (gravityforms\/js\/gravityforms.js), so a second dispatch binds a second\n                 * uploader to the same field and every selected file is submitted twice. GF's\n                 * own guard is function-local to the script it prints and cannot be read from\n                 * here, so we watch for the event instead and only step in if it never comes.\n                 *\n                 * This is the single fallback for this widget. Tickets 84410 and 84529 each\n                 * added one independently and both were merged, leaving two mutually-blind\n                 * shims that raced (issue #894). Do not add another - extend this one, and\n                 * keep the `window.__eaelGfPostRender*` flags as the shared source of truth.\n                 *\n                 * Printed before the form markup so the listeners are in place ahead of any\n                 * GF init script for this form, whether printed inline or in the footer.\n                 *\/\n                ( function () {\n                    var formId    = 6;\n                    var seenFlag  = '__eaelGfPostRenderSeen_'  + formId; \/\/ dispatched, by anyone\n                    var boundFlag = '__eaelGfPostRenderBound_' + formId; \/\/ this shim is installed\n\n                    if ( window[ boundFlag ] ) {\n                        return;\n                    }\n                    window[ boundFlag ] = true;\n\n                    function markSeen( id ) {\n                        if ( parseInt( id, 10 ) === formId ) {\n                            window[ seenFlag ] = true;\n                        }\n                    }\n\n                    \/\/ triggerPostRenderEvents() always fires the jQuery event first and the\n                    \/\/ gform.utils one after, whoever calls it - so between them these observe\n                    \/\/ GF core's own dispatch as well as any other caller's.\n                    if ( window.jQuery ) {\n                        window.jQuery( document ).on( 'gform_post_render', function ( event, id ) {\n                            markSeen( typeof id !== 'undefined' ? id : formId );\n                        } );\n                    }\n                    if ( window.gform && window.gform.utils\n                         && typeof window.gform.utils.addEventListener === 'function' ) {\n                        window.gform.utils.addEventListener( 'gform\/post_render', function ( e ) {\n                            markSeen( e && e.detail && typeof e.detail.formId !== 'undefined'\n                                      ? e.detail.formId : formId );\n                        } );\n                    }\n\n                    function maybeDispatch() {\n                        if ( window[ seenFlag ] ) {\n                            return;\n                        }\n\n                        \/\/ GF leaves this marker beside a hidden form while it waits for the\n                        \/\/ form to become visible, and removes it once it dispatches. Still\n                        \/\/ present means GF's script did run and will dispatch on its own -\n                        \/\/ firing now is the double-dispatch that duplicates file uploads.\n                        if ( document.getElementById( 'gform_visibility_test_' + formId ) ) {\n                            return;\n                        }\n\n                        if ( ! window.gform || ! window.gform.core\n                             || typeof window.gform.core.triggerPostRenderEvents !== 'function' ) {\n                            return;\n                        }\n\n                        var pageInput   = document.getElementById( 'gform_source_page_number_' + formId );\n                        var currentPage = pageInput ? parseInt( pageInput.value, 10 ) : 1;\n\n                        window[ seenFlag ] = true;\n                        window.gform.core.triggerPostRenderEvents( formId, currentPage || 1 );\n                    }\n\n                    \/\/ Wait for the window load event and then for GF's own gate, which needs\n                    \/\/ DOMContentLoaded plus its main and theme script events. Registering the\n                    \/\/ callback this late puts it behind GF's in the queue, and the timeout\n                    \/\/ puts it in a later task again, so GF always gets to dispatch first.\n                    function schedule() {\n                        if ( window.gform && typeof window.gform.initializeOnLoaded === 'function' ) {\n                            window.gform.initializeOnLoaded( function () {\n                                setTimeout( maybeDispatch, 0 );\n                            } );\n                        } else {\n                            setTimeout( maybeDispatch, 0 );\n                        }\n                    }\n\n                    if ( document.readyState === 'complete' ) {\n                        schedule();\n                    } else {\n                        window.addEventListener( 'load', schedule );\n                    }\n                } )();\n            <\/script>\n\n            <script>\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\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_6' ><div id='gf_6' 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_6' id='gform_6'  action='\/en\/wp-json\/wp\/v2\/pages\/3382#gf_6' data-formid='6' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_6' class='gform_fields left_label form_sublabel_below description_below validation_below'><div id=\"field_6_34\" 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_6_34'><span class='gform-field-label__text'>LinkedIn<\/span><\/label><div class='ginput_container'><input name='input_34' id='input_6_34' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_6_34'>This field is for validation purposes and should be left unchanged.<\/div><\/div><div id=\"field_6_1\" class=\"gfield gfield--type-select 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_6_1'><span class='gform-field-label__text'>Salutation<\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_1' id='input_6_1' class='large gfield_select'     aria-invalid=\"false\" ><option value='' selected='selected' class='gf_placeholder'>Please choose<\/option><option value='Ms.' >Ms.<\/option><option value='Mr.' >Mr.<\/option><\/select><\/div><\/div><div id=\"field_6_2\" class=\"gfield gfield--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_6_2'><span class='gform-field-label__text'>Academic Degree<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_6_2' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_6_28\" class=\"gfield gfield--type-name gfield--width-full gfield_contains_required 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' ><span class='gform-field-label__text'>Name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_6_28'>\n                            \n                            <span id='input_6_28_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_28.3' id='input_6_28_3' value=''   aria-required='true'     \/>\n                                                    <label for='input_6_28_3' class='gform-field-label gform-field-label--type-sub '>First Name<\/label>\n                                                <\/span>\n                            \n                            <span id='input_6_28_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_28.6' id='input_6_28_6' value=''   aria-required='true'     \/>\n                                                    <label for='input_6_28_6' class='gform-field-label gform-field-label--type-sub '>Last Name<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/fieldset><div id=\"field_6_4\" class=\"gfield gfield--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_6_4'><span class='gform-field-label__text'>Company \/ Institution<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_6_4' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_7\" class=\"gfield gfield--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_6_7'><span class='gform-field-label__text'>Department<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_7' id='input_6_7' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_6\" class=\"gfield gfield--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_6_6'><span class='gform-field-label__text'>Position<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_6' id='input_6_6' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_6_29\" class=\"gfield gfield--type-address 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' ><span class='gform-field-label__text'>Address<\/span><\/legend>    \n                    <div class='ginput_complex ginput_container has_street has_city has_zip has_country ginput_container_address gform-grid-row' id='input_6_29' >\n                         <span class='ginput_full address_line_1 ginput_address_line_1 gform-grid-col' id='input_6_29_1_container' >\n                                        <input type='text' name='input_29.1' id='input_6_29_1' value=''    aria-required='false'    \/>\n                                        <label for='input_6_29_1' id='input_6_29_1_label' class='gform-field-label gform-field-label--type-sub '>Street, No.<\/label>\n                                    <\/span><span class='ginput_left address_city ginput_address_city gform-grid-col' id='input_6_29_3_container' >\n                                    <input type='text' name='input_29.3' id='input_6_29_3' value=''    aria-required='false'    \/>\n                                    <label for='input_6_29_3' id='input_6_29_3_label' class='gform-field-label gform-field-label--type-sub '>City<\/label>\n                                 <\/span><input type='hidden' class='gform_hidden' name='input_29.4' id='input_6_29_4' value=''\/><span class='ginput_right address_zip ginput_address_zip gform-grid-col' id='input_6_29_5_container' >\n                                    <input type='text' name='input_29.5' id='input_6_29_5' value=''    aria-required='false'    \/>\n                                    <label for='input_6_29_5' id='input_6_29_5_label' class='gform-field-label gform-field-label--type-sub '>ZIP<\/label>\n                                <\/span><span class='ginput_left address_country ginput_address_country gform-grid-col' id='input_6_29_6_container' >\n                                        <select name='input_29.6' id='input_6_29_6'   aria-required='false'    ><option value='' ><\/option><option value='AF' >Afghanistan<\/option><option value='AX' >\u00c5land Islands<\/option><option value='AL' >Albania<\/option><option value='DZ' >Algeria<\/option><option value='AS' >American Samoa<\/option><option value='AD' >Andorra<\/option><option value='AO' >Angola<\/option><option value='AI' >Anguilla<\/option><option value='AQ' >Antarctica<\/option><option value='AG' >Antigua and Barbuda<\/option><option value='AR' >Argentina<\/option><option value='AM' >Armenia<\/option><option value='AW' >Aruba<\/option><option value='AU' >Australia<\/option><option value='AT' >Austria<\/option><option value='AZ' >Azerbaijan<\/option><option value='BS' >Bahamas<\/option><option value='BH' >Bahrain<\/option><option value='BD' >Bangladesh<\/option><option value='BB' >Barbados<\/option><option value='BY' >Belarus<\/option><option value='BE' >Belgium<\/option><option value='BZ' >Belize<\/option><option value='BJ' >Benin<\/option><option value='BM' >Bermuda<\/option><option value='BT' >Bhutan<\/option><option value='BO' >Bolivia<\/option><option value='BQ' >Bonaire, Sint Eustatius and Saba<\/option><option value='BA' >Bosnia and Herzegovina<\/option><option value='BW' >Botswana<\/option><option value='BV' >Bouvet Island<\/option><option value='BR' >Brazil<\/option><option value='IO' >British Indian Ocean Territory<\/option><option value='BN' >Brunei Darussalam<\/option><option value='BG' >Bulgaria<\/option><option value='BF' >Burkina Faso<\/option><option value='BI' >Burundi<\/option><option value='CV' >Cabo Verde<\/option><option value='KH' >Cambodia<\/option><option value='CM' >Cameroon<\/option><option value='CA' >Canada<\/option><option value='KY' >Cayman Islands<\/option><option value='CF' >Central African Republic<\/option><option value='TD' >Chad<\/option><option value='CL' >Chile<\/option><option value='CN' >China<\/option><option value='CX' >Christmas Island<\/option><option value='CC' >Cocos Islands<\/option><option value='CO' >Colombia<\/option><option value='KM' >Comoros<\/option><option value='CG' >Congo<\/option><option value='CD' >Congo, Democratic Republic of the<\/option><option value='CK' >Cook Islands<\/option><option value='CR' >Costa Rica<\/option><option value='CI' >C\u00f4te d&#039;Ivoire<\/option><option value='HR' >Croatia<\/option><option value='CU' >Cuba<\/option><option value='CW' >Cura\u00e7ao<\/option><option value='CY' >Cyprus<\/option><option value='CZ' >Czechia<\/option><option value='DK' >Denmark<\/option><option value='DJ' >Djibouti<\/option><option value='DM' >Dominica<\/option><option value='DO' >Dominican Republic<\/option><option value='EC' >Ecuador<\/option><option value='EG' >Egypt<\/option><option value='SV' >El Salvador<\/option><option value='GQ' >Equatorial Guinea<\/option><option value='ER' >Eritrea<\/option><option value='EE' >Estonia<\/option><option value='SZ' >Eswatini<\/option><option value='ET' >Ethiopia<\/option><option value='FK' >Falkland Islands<\/option><option value='FO' >Faroe Islands<\/option><option value='FJ' >Fiji<\/option><option value='FI' >Finland<\/option><option value='FR' >France<\/option><option value='GF' >French Guiana<\/option><option value='PF' >French Polynesia<\/option><option value='TF' >French Southern Territories<\/option><option value='GA' >Gabon<\/option><option value='GM' >Gambia<\/option><option value='GE' >Georgia<\/option><option value='DE' >Germany<\/option><option value='GH' >Ghana<\/option><option value='GI' >Gibraltar<\/option><option value='GR' >Greece<\/option><option value='GL' >Greenland<\/option><option value='GD' >Grenada<\/option><option value='GP' >Guadeloupe<\/option><option value='GU' >Guam<\/option><option value='GT' >Guatemala<\/option><option value='GG' >Guernsey<\/option><option value='GN' >Guinea<\/option><option value='GW' >Guinea-Bissau<\/option><option value='GY' >Guyana<\/option><option value='HT' >Haiti<\/option><option value='HM' >Heard Island and McDonald Islands<\/option><option value='VA' >Holy See<\/option><option value='HN' >Honduras<\/option><option value='HK' >Hong Kong<\/option><option value='HU' >Hungary<\/option><option value='IS' >Iceland<\/option><option value='IN' >India<\/option><option value='ID' >Indonesia<\/option><option value='IR' >Iran<\/option><option value='IQ' >Iraq<\/option><option value='IE' >Ireland<\/option><option value='IM' >Isle of Man<\/option><option value='IL' >Israel<\/option><option value='IT' >Italy<\/option><option value='JM' >Jamaica<\/option><option value='JP' >Japan<\/option><option value='JE' >Jersey<\/option><option value='JO' >Jordan<\/option><option value='KZ' >Kazakhstan<\/option><option value='KE' >Kenya<\/option><option value='KI' >Kiribati<\/option><option value='KP' >Korea, Democratic People&#039;s Republic of<\/option><option value='KR' >Korea, Republic of<\/option><option value='KW' >Kuwait<\/option><option value='KG' >Kyrgyzstan<\/option><option value='LA' >Lao People&#039;s Democratic Republic<\/option><option value='LV' >Latvia<\/option><option value='LB' >Lebanon<\/option><option value='LS' >Lesotho<\/option><option value='LR' >Liberia<\/option><option value='LY' >Libya<\/option><option value='LI' >Liechtenstein<\/option><option value='LT' >Lithuania<\/option><option value='LU' >Luxembourg<\/option><option value='MO' >Macao<\/option><option value='MG' >Madagascar<\/option><option value='MW' >Malawi<\/option><option value='MY' >Malaysia<\/option><option value='MV' >Maldives<\/option><option value='ML' >Mali<\/option><option value='MT' >Malta<\/option><option value='MH' >Marshall Islands<\/option><option value='MQ' >Martinique<\/option><option value='MR' >Mauritania<\/option><option value='MU' >Mauritius<\/option><option value='YT' >Mayotte<\/option><option value='MX' >Mexico<\/option><option value='FM' >Micronesia<\/option><option value='MD' >Moldova<\/option><option value='MC' >Monaco<\/option><option value='MN' >Mongolia<\/option><option value='ME' >Montenegro<\/option><option value='MS' >Montserrat<\/option><option value='MA' >Morocco<\/option><option value='MZ' >Mozambique<\/option><option value='MM' >Myanmar<\/option><option value='NA' >Namibia<\/option><option value='NR' >Nauru<\/option><option value='NP' >Nepal<\/option><option value='NL' >Netherlands<\/option><option value='NC' >New Caledonia<\/option><option value='NZ' >New Zealand<\/option><option value='NI' >Nicaragua<\/option><option value='NE' >Niger<\/option><option value='NG' >Nigeria<\/option><option value='NU' >Niue<\/option><option value='NF' >Norfolk Island<\/option><option value='MK' >North Macedonia<\/option><option value='MP' >Northern Mariana Islands<\/option><option value='NO' >Norway<\/option><option value='OM' >Oman<\/option><option value='PK' >Pakistan<\/option><option value='PW' >Palau<\/option><option value='PS' >Palestine, State of<\/option><option value='PA' >Panama<\/option><option value='PG' >Papua New Guinea<\/option><option value='PY' >Paraguay<\/option><option value='PE' >Peru<\/option><option value='PH' >Philippines<\/option><option value='PN' >Pitcairn<\/option><option value='PL' >Poland<\/option><option value='PT' >Portugal<\/option><option value='PR' >Puerto Rico<\/option><option value='QA' >Qatar<\/option><option value='RE' >R\u00e9union<\/option><option value='RO' >Romania<\/option><option value='RU' >Russian Federation<\/option><option value='RW' >Rwanda<\/option><option value='BL' >Saint Barth\u00e9lemy<\/option><option value='SH' >Saint Helena, Ascension and Tristan da Cunha<\/option><option value='KN' >Saint Kitts and Nevis<\/option><option value='LC' >Saint Lucia<\/option><option value='MF' >Saint Martin<\/option><option value='PM' >Saint Pierre and Miquelon<\/option><option value='VC' >Saint Vincent and the Grenadines<\/option><option value='WS' >Samoa<\/option><option value='SM' >San Marino<\/option><option value='ST' >Sao Tome and Principe<\/option><option value='SA' >Saudi Arabia<\/option><option value='SN' >Senegal<\/option><option value='RS' >Serbia<\/option><option value='SC' >Seychelles<\/option><option value='SL' >Sierra Leone<\/option><option value='SG' >Singapore<\/option><option value='SX' >Sint Maarten<\/option><option value='SK' >Slovakia<\/option><option value='SI' >Slovenia<\/option><option value='SB' >Solomon Islands<\/option><option value='SO' >Somalia<\/option><option value='ZA' >South Africa<\/option><option value='GS' >South Georgia and the South Sandwich Islands<\/option><option value='SS' >South Sudan<\/option><option value='ES' >Spain<\/option><option value='LK' >Sri Lanka<\/option><option value='SD' >Sudan<\/option><option value='SR' >Suriname<\/option><option value='SJ' >Svalbard and Jan Mayen<\/option><option value='SE' >Sweden<\/option><option value='CH' >Switzerland<\/option><option value='SY' >Syria Arab Republic<\/option><option value='TW' >Taiwan<\/option><option value='TJ' >Tajikistan<\/option><option value='TZ' >Tanzania, the United Republic of<\/option><option value='TH' >Thailand<\/option><option value='TL' >Timor-Leste<\/option><option value='TG' >Togo<\/option><option value='TK' >Tokelau<\/option><option value='TO' >Tonga<\/option><option value='TT' >Trinidad and Tobago<\/option><option value='TN' >Tunisia<\/option><option value='TR' >T\u00fcrkiye<\/option><option value='TM' >Turkmenistan<\/option><option value='TC' >Turks and Caicos Islands<\/option><option value='TV' >Tuvalu<\/option><option value='UG' >Uganda<\/option><option value='UA' >Ukraine<\/option><option value='AE' >United Arab Emirates<\/option><option value='GB' >United Kingdom<\/option><option value='US' >United States<\/option><option value='UY' >Uruguay<\/option><option value='UM' >US Minor Outlying Islands<\/option><option value='UZ' >Uzbekistan<\/option><option value='VU' >Vanuatu<\/option><option value='VE' >Venezuela<\/option><option value='VN' >Viet Nam<\/option><option value='VG' >Virgin Islands, British<\/option><option value='VI' >Virgin Islands, U.S.<\/option><option value='WF' >Wallis and Futuna<\/option><option value='EH' >Western Sahara<\/option><option value='YE' >Yemen<\/option><option value='ZM' >Zambia<\/option><option value='ZW' >Zimbabwe<\/option><\/select>\n                                        <label for='input_6_29_6' id='input_6_29_6_label' class='gform-field-label gform-field-label--type-sub '>Country<\/label>\n                                    <\/span>\n                    <div class='gf_clear gf_clear_complex'><\/div>\n                <\/div><\/fieldset><div id=\"field_6_12\" 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_6_12'><span class='gform-field-label__text'>Phone<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_12' id='input_6_12' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_13\" class=\"gfield gfield--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_6_13'><span class='gform-field-label__text'>Email of the author<\/span><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_13' id='input_6_13' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_6_14\" class=\"gfield gfield--type-email 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_6_14'><span class='gform-field-label__text'>Copy of confirmation email to (optional)<\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_14' id='input_6_14' type='email' value='' class='large'     aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_6_15\" class=\"gfield gfield--type-html gfield--width-full gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3><b>Poster<\/b><\/h3><\/div><div id=\"field_6_16\" class=\"gfield gfield--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_6_16'><span class='gform-field-label__text'>Short title of your abstract<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_16' id='input_6_16' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_17\" class=\"gfield gfield--type-textarea 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_6_17'><span class='gform-field-label__text'>Content of paper (minimum of 1,500 characters)<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_17' id='input_6_17' class='textarea large'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_6_23\" class=\"gfield gfield--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_6_23'><span class='gform-field-label__text'>Additional authors<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_23' id='input_6_23' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_18\" class=\"gfield gfield--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='input_6_18'><span class='gform-field-label__text'>Abstract attachment 1<\/span><\/label><div class='ginput_container ginput_container_fileupload'><input type='hidden' name='MAX_FILE_SIZE' value='10485760' \/><input name='input_18' id='input_6_18' type='file' class='large' aria-describedby=\"gfield_upload_rules_6_18\" onchange='javascript:gformValidateFileSize( this, 10485760 );'  \/><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_6_18'>Max. file size: 10 MB.<\/span><div class='gfield_description validation_message gfield_validation_message validation_message--hidden-on-empty' id='live_validation_message_6_18'><\/div> <\/div><\/div><div id=\"field_6_19\" class=\"gfield gfield--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='input_6_19'><span class='gform-field-label__text'>Abstract attachment 2<\/span><\/label><div class='ginput_container ginput_container_fileupload'><input type='hidden' name='MAX_FILE_SIZE' value='10485760' \/><input name='input_19' id='input_6_19' type='file' class='large' aria-describedby=\"gfield_upload_rules_6_19\" onchange='javascript:gformValidateFileSize( this, 10485760 );'  \/><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_6_19'>Max. file size: 10 MB.<\/span><div class='gfield_description validation_message gfield_validation_message validation_message--hidden-on-empty' id='live_validation_message_6_19'><\/div> <\/div><\/div><div id=\"field_6_30\" class=\"gfield gfield--type-html gfield--width-full gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3><b>Categorization<\/b><\/h3><\/div><fieldset id=\"field_6_33\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Category<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_6_33'><div class='gchoice gchoice_6_33_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_33.1' type='checkbox'  value='Practical projects'  id='choice_6_33_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_33_1' id='label_6_33_1' class='gform-field-label gform-field-label--type-inline'>Practical projects<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_33_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_33.2' type='checkbox'  value='Charging infrastructure'  id='choice_6_33_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_33_2' id='label_6_33_2' class='gform-field-label gform-field-label--type-inline'>Charging infrastructure<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_33_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_33.3' type='checkbox'  value='Vehicles'  id='choice_6_33_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_33_3' id='label_6_33_3' class='gform-field-label gform-field-label--type-inline'>Vehicles<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_33_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_33.4' type='checkbox'  value='System integration'  id='choice_6_33_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_33_4' id='label_6_33_4' class='gform-field-label gform-field-label--type-inline'>System integration<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_6_33_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_33.5' type='checkbox'  value='Grids'  id='choice_6_33_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_6_33_5' id='label_6_33_5' class='gform-field-label gform-field-label--type-inline'>Grids<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_31\" class=\"gfield gfield--type-html gfield--width-full gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3><b>Vita of the author<\/h3><\/b><\/div><div id=\"field_6_25\" class=\"gfield gfield--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='input_6_25'><span class='gform-field-label__text'>Upload CV<\/span><\/label><div class='ginput_container ginput_container_fileupload'><input type='hidden' name='MAX_FILE_SIZE' value='10485760' \/><input name='input_25' id='input_6_25' type='file' class='large' aria-describedby=\"gfield_upload_rules_6_25\" onchange='javascript:gformValidateFileSize( this, 10485760 );'  \/><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_6_25'>Max. file size: 10 MB.<\/span><div class='gfield_description validation_message gfield_validation_message validation_message--hidden-on-empty' id='live_validation_message_6_25'><\/div> <\/div><\/div><div id=\"field_6_24\" class=\"gfield gfield--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='input_6_24'><span class='gform-field-label__text'>Upload Portrait<\/span><\/label><div class='ginput_container ginput_container_fileupload'><input type='hidden' name='MAX_FILE_SIZE' value='10485760' \/><input name='input_24' id='input_6_24' type='file' class='large' aria-describedby=\"gfield_upload_rules_6_24\" onchange='javascript:gformValidateFileSize( this, 10485760 );'  \/><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_6_24'>Max. file size: 10 MB.<\/span><div class='gfield_description validation_message gfield_validation_message validation_message--hidden-on-empty' id='live_validation_message_6_24'><\/div> <\/div><\/div><div id=\"field_6_32\" class=\"gfield gfield--type-html gfield--width-full gfield_html gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><h3><b>Declaration of consent<\/h3><\/b><\/div><fieldset id=\"field_6_26\" class=\"gfield gfield--type-consent gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Consent<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_26.1' id='input_6_26_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_6_26_1' ><span class='gform-field-label__text'>I agree to the publication of my data to content and person on this webpage.<\/span><\/label><input type='hidden' name='input_26.2' value='I agree to the publication of my data to content and person on this webpage.' class='gform_hidden' \/><input type='hidden' name='input_26.3' value='1' class='gform_hidden' \/><\/div><\/fieldset><fieldset id=\"field_6_27\" class=\"gfield gfield--type-consent gfield--type-choice gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Privacy<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_27.1' id='input_6_27_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_6_27_1' ><span class='gform-field-label__text'>I have read the <a href=\"https:\/\/www.vehicle-2-grid.eu\/en\/datenschutzerklaerung\/\"; target=\"_blank\";>information on data protection.<\/a><\/span><\/label><input type='hidden' name='input_27.2' value='I have read the &lt;a href=&quot;https:\/\/www.vehicle-2-grid.eu\/en\/datenschutzerklaerung\/&quot;; target=&quot;_blank&quot;;&gt;information on data protection.&lt;\/a&gt;' class='gform_hidden' \/><input type='hidden' name='input_27.3' value='1' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer left_label'> <button type='submit' id='gform_submit_button_6' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' >Submit<\/button> <input type='hidden' name='gform_ajax' value='form_id=6&amp;title=&amp;description=&amp;tabindex=0&amp;theme=gravity-theme&amp;hash=d722ef18b6103c6390528fb91714f6b1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_6' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_6' id='gform_theme_6' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_6' id='gform_style_settings_6' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_6' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='6' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='EUR' value='Zm8zp1PjyMFvgQIjHfIEeVkp0X65jEI3yf2KV6dSM2InVvrz8lMn+4e8fDO61HRZu7QW+sAxnDEHAllnahRbzPlwP+zssD06eKvXMQHUt9ym3RE=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_6' value='WyJ7XCIzMy4xXCI6XCI3NjdlOTI1NTI1NTlmMzgwNGIxNjEwNjBhZWViNjQ5OVwiLFwiMzMuMlwiOlwiODNmYzQzNDJlNjk1MWI4YmRmM2NlNTQ3ZGI5OWFmNzRcIixcIjMzLjNcIjpcImZkOTUyMDQzMGMwMmIwOGU5N2E2ODE1Zjg2ZmY4Mzc0XCIsXCIzMy40XCI6XCIzOTllN2UxY2YxZTIxNTE5MTJhMmU3ZDM3MzI1NDBlNFwiLFwiMzMuNVwiOlwiNzJjYTJmZTViNGY5ZjFhNTY5YmJlYWQ5ZDU1MTk1YTNcIixcIjI2LjFcIjpcIjVlNDViYTVmMjA1ZmQzNGY0ZDI1Zjg2NDNkY2Q2ZTAxXCIsXCIyNi4yXCI6XCI0ZDgyN2Q1ZTlmYzhlMmYzOTFlODI0NGM3OTk0OWQwMVwiLFwiMjYuM1wiOlwiNWU0NWJhNWYyMDVmZDM0ZjRkMjVmODY0M2RjZDZlMDFcIixcIjI3LjFcIjpcIjVlNDViYTVmMjA1ZmQzNGY0ZDI1Zjg2NDNkY2Q2ZTAxXCIsXCIyNy4yXCI6XCIyMWFjNTcwZTgyYmE4OTc4ZTE0YmJmMjJmODFjMTU4ZVwiLFwiMjcuM1wiOlwiNWU0NWJhNWYyMDVmZDM0ZjRkMjVmODY0M2RjZDZlMDFcIixcImdmb3JtX3N1Ym1pc3Npb25fbWV0aG9kXCI6W1wiMzU5MGE4NzAwMWI3YWI4MzMyOTliMmE2ZjYzMDkwODZcIixcIjQyNzBiMDllY2VkOTVmMzM2MjNkNTI2ODY5M2I0ZDA1XCIsXCJmMmMwOGExMTE1YmM2MmJmNjVlMTQxMzhhMzZiMDlmMVwiXSxcImdmb3JtX3RoZW1lXCI6XCI2M2FiYTcyZGZlZTkxZjFkMjYwZjk1ZTVkMzQ5MzczN1wiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcImI2NzM4NGE0OTA2OTNiMzA2OWI5OTQwNzIwMmY5MzYyXCIsXCJmb3JtX2lkXCI6XCI3ODkzYjg4NDk5ZDJlOTkwYzVmMDljNzVmZDlhNWQ4N1wiLFwidXJsXCI6XCI3OTQ2MTk0NmY0ZGQ2MDM2NzNlYWJiZDMwODczNzNjNlwiLFwic3RhdGVfdGltZXN0YW1wXCI6XCJlYWIzNTU1NDI5MWY5NWRhZTI3Y2Q5ZTJmNWU4NjBmMFwifSIsIjQ2YmQ3NmVjMzdmNDFlNDk2ZTQ4NmJkYzQyYzNlNWVhIiwxNzg5OTE5OTMzXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_6' id='gform_target_page_number_6' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_6' id='gform_source_page_number_6' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_6' id='gform_ajax_frame_6' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {jQuery('#gform_ajax_frame_6').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_6');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_6').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_6').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_6').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_6').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_6').offset().top - mt); }, 50 );var current_page = jQuery('#gform_source_page_number_6').val();jQuery(document).trigger('gform_page_loaded', [6, current_page]);window['gf_submitting_6'] = 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_6').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_6').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [6]);window['gf_submitting_6'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_6').text());}else{jQuery('#gform_6').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"6\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_6\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_6\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_6\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 6, 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\t\t\t<\/div>\n\n            <script type=\"text\/javascript\">\n                var gf_global = {\"gf_currency_config\":{\"name\":\"Euro\",\"symbol_left\":\"\",\"symbol_right\":\"&#8364;\",\"symbol_padding\":\" \",\"thousand_separator\":\".\",\"decimal_separator\":\",\",\"decimals\":2,\"code\":\"EUR\"},\"base_url\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/wp-content\\\/plugins\\\/gravityforms\",\"number_formats\":[],\"version_hash\":\"df27cb83cbf29bf42f2d9d7a401c948d\",\"countries\":{\"AF\":\"Afghanistan\",\"AX\":\"\\u00c5land Islands\",\"AL\":\"Albania\",\"DZ\":\"Algeria\",\"AS\":\"American Samoa\",\"AD\":\"Andorra\",\"AO\":\"Angola\",\"AI\":\"Anguilla\",\"AQ\":\"Antarctica\",\"AG\":\"Antigua and Barbuda\",\"AR\":\"Argentina\",\"AM\":\"Armenia\",\"AW\":\"Aruba\",\"AU\":\"Australia\",\"AT\":\"Austria\",\"AZ\":\"Azerbaijan\",\"BS\":\"Bahamas\",\"BH\":\"Bahrain\",\"BD\":\"Bangladesh\",\"BB\":\"Barbados\",\"BY\":\"Belarus\",\"BE\":\"Belgium\",\"BZ\":\"Belize\",\"BJ\":\"Benin\",\"BM\":\"Bermuda\",\"BT\":\"Bhutan\",\"BO\":\"Bolivia\",\"BQ\":\"Bonaire, Sint Eustatius and Saba\",\"BA\":\"Bosnia and Herzegovina\",\"BW\":\"Botswana\",\"BV\":\"Bouvet Island\",\"BR\":\"Brazil\",\"IO\":\"British Indian Ocean Territory\",\"BN\":\"Brunei Darussalam\",\"BG\":\"Bulgaria\",\"BF\":\"Burkina Faso\",\"BI\":\"Burundi\",\"CV\":\"Cabo Verde\",\"KH\":\"Cambodia\",\"CM\":\"Cameroon\",\"CA\":\"Canada\",\"KY\":\"Cayman Islands\",\"CF\":\"Central African Republic\",\"TD\":\"Chad\",\"CL\":\"Chile\",\"CN\":\"China\",\"CX\":\"Christmas Island\",\"CC\":\"Cocos Islands\",\"CO\":\"Colombia\",\"KM\":\"Comoros\",\"CD\":\"Congo, Democratic Republic of the\",\"CG\":\"Congo\",\"CK\":\"Cook Islands\",\"CR\":\"Costa Rica\",\"CI\":\"C\\u00f4te d'Ivoire\",\"HR\":\"Croatia\",\"CU\":\"Cuba\",\"CW\":\"Cura\\u00e7ao\",\"CY\":\"Cyprus\",\"CZ\":\"Czechia\",\"DK\":\"Denmark\",\"DJ\":\"Djibouti\",\"DM\":\"Dominica\",\"DO\":\"Dominican Republic\",\"EC\":\"Ecuador\",\"EG\":\"Egypt\",\"SV\":\"El Salvador\",\"GQ\":\"Equatorial Guinea\",\"ER\":\"Eritrea\",\"EE\":\"Estonia\",\"SZ\":\"Eswatini\",\"ET\":\"Ethiopia\",\"FK\":\"Falkland Islands\",\"FO\":\"Faroe Islands\",\"FJ\":\"Fiji\",\"FI\":\"Finland\",\"FR\":\"France\",\"GF\":\"French Guiana\",\"PF\":\"French Polynesia\",\"TF\":\"French Southern Territories\",\"GA\":\"Gabon\",\"GM\":\"Gambia\",\"GE\":\"Georgia\",\"DE\":\"Germany\",\"GH\":\"Ghana\",\"GI\":\"Gibraltar\",\"GR\":\"Greece\",\"GL\":\"Greenland\",\"GD\":\"Grenada\",\"GP\":\"Guadeloupe\",\"GU\":\"Guam\",\"GT\":\"Guatemala\",\"GG\":\"Guernsey\",\"GN\":\"Guinea\",\"GW\":\"Guinea-Bissau\",\"GY\":\"Guyana\",\"HT\":\"Haiti\",\"HM\":\"Heard Island and McDonald Islands\",\"VA\":\"Holy See\",\"HN\":\"Honduras\",\"HK\":\"Hong Kong\",\"HU\":\"Hungary\",\"IS\":\"Iceland\",\"IN\":\"India\",\"ID\":\"Indonesia\",\"IR\":\"Iran\",\"IQ\":\"Iraq\",\"IE\":\"Ireland\",\"IM\":\"Isle of Man\",\"IL\":\"Israel\",\"IT\":\"Italy\",\"JM\":\"Jamaica\",\"JP\":\"Japan\",\"JE\":\"Jersey\",\"JO\":\"Jordan\",\"KZ\":\"Kazakhstan\",\"KE\":\"Kenya\",\"KI\":\"Kiribati\",\"KP\":\"Korea, Democratic People's Republic of\",\"KR\":\"Korea, Republic of\",\"KW\":\"Kuwait\",\"KG\":\"Kyrgyzstan\",\"LA\":\"Lao People's Democratic Republic\",\"LV\":\"Latvia\",\"LB\":\"Lebanon\",\"LS\":\"Lesotho\",\"LR\":\"Liberia\",\"LY\":\"Libya\",\"LI\":\"Liechtenstein\",\"LT\":\"Lithuania\",\"LU\":\"Luxembourg\",\"MO\":\"Macao\",\"MG\":\"Madagascar\",\"MW\":\"Malawi\",\"MY\":\"Malaysia\",\"MV\":\"Maldives\",\"ML\":\"Mali\",\"MT\":\"Malta\",\"MH\":\"Marshall Islands\",\"MQ\":\"Martinique\",\"MR\":\"Mauritania\",\"MU\":\"Mauritius\",\"YT\":\"Mayotte\",\"MX\":\"Mexico\",\"FM\":\"Micronesia\",\"MD\":\"Moldova\",\"MC\":\"Monaco\",\"MN\":\"Mongolia\",\"ME\":\"Montenegro\",\"MS\":\"Montserrat\",\"MA\":\"Morocco\",\"MZ\":\"Mozambique\",\"MM\":\"Myanmar\",\"NA\":\"Namibia\",\"NR\":\"Nauru\",\"NP\":\"Nepal\",\"NL\":\"Netherlands\",\"NC\":\"New Caledonia\",\"NZ\":\"New Zealand\",\"NI\":\"Nicaragua\",\"NE\":\"Niger\",\"NG\":\"Nigeria\",\"NU\":\"Niue\",\"NF\":\"Norfolk Island\",\"MK\":\"North Macedonia\",\"MP\":\"Northern Mariana Islands\",\"NO\":\"Norway\",\"OM\":\"Oman\",\"PK\":\"Pakistan\",\"PW\":\"Palau\",\"PS\":\"Palestine, State of\",\"PA\":\"Panama\",\"PG\":\"Papua New Guinea\",\"PY\":\"Paraguay\",\"PE\":\"Peru\",\"PH\":\"Philippines\",\"PN\":\"Pitcairn\",\"PL\":\"Poland\",\"PT\":\"Portugal\",\"PR\":\"Puerto Rico\",\"QA\":\"Qatar\",\"RE\":\"R\\u00e9union\",\"RO\":\"Romania\",\"RU\":\"Russian Federation\",\"RW\":\"Rwanda\",\"BL\":\"Saint Barth\\u00e9lemy\",\"SH\":\"Saint Helena, Ascension and Tristan da Cunha\",\"KN\":\"Saint Kitts and Nevis\",\"LC\":\"Saint Lucia\",\"MF\":\"Saint Martin\",\"PM\":\"Saint Pierre and Miquelon\",\"VC\":\"Saint Vincent and the Grenadines\",\"WS\":\"Samoa\",\"SM\":\"San Marino\",\"ST\":\"Sao Tome and Principe\",\"SA\":\"Saudi Arabia\",\"SN\":\"Senegal\",\"RS\":\"Serbia\",\"SC\":\"Seychelles\",\"SL\":\"Sierra Leone\",\"SG\":\"Singapore\",\"SX\":\"Sint Maarten\",\"SK\":\"Slovakia\",\"SI\":\"Slovenia\",\"SB\":\"Solomon Islands\",\"SO\":\"Somalia\",\"ZA\":\"South Africa\",\"GS\":\"South Georgia and the South Sandwich Islands\",\"SS\":\"South Sudan\",\"ES\":\"Spain\",\"LK\":\"Sri Lanka\",\"SD\":\"Sudan\",\"SR\":\"Suriname\",\"SJ\":\"Svalbard and Jan Mayen\",\"SE\":\"Sweden\",\"CH\":\"Switzerland\",\"SY\":\"Syria Arab Republic\",\"TW\":\"Taiwan\",\"TJ\":\"Tajikistan\",\"TZ\":\"Tanzania, the United Republic of\",\"TH\":\"Thailand\",\"TL\":\"Timor-Leste\",\"TG\":\"Togo\",\"TK\":\"Tokelau\",\"TO\":\"Tonga\",\"TT\":\"Trinidad and Tobago\",\"TN\":\"Tunisia\",\"TR\":\"T\\u00fcrkiye\",\"TM\":\"Turkmenistan\",\"TC\":\"Turks and Caicos Islands\",\"TV\":\"Tuvalu\",\"UG\":\"Uganda\",\"UA\":\"Ukraine\",\"AE\":\"United Arab Emirates\",\"GB\":\"United Kingdom\",\"US\":\"United States\",\"UY\":\"Uruguay\",\"UM\":\"US Minor Outlying Islands\",\"UZ\":\"Uzbekistan\",\"VU\":\"Vanuatu\",\"VE\":\"Venezuela\",\"VN\":\"Viet Nam\",\"VG\":\"Virgin Islands, British\",\"VI\":\"Virgin Islands, U.S.\",\"WF\":\"Wallis and Futuna\",\"EH\":\"Western Sahara\",\"YE\":\"Yemen\",\"ZM\":\"Zambia\",\"ZW\":\"Zimbabwe\"},\"strings\":{\"newRowAdded\":\"New row added.\",\"rowRemoved\":\"Row removed\",\"formSaved\":\"The form has been saved.  The content contains the link to return and complete the form.\"}};\t\t\t\tvar gf_vars = {\"active\":\"Active\",\"inactive\":\"Inactive\",\"save\":\"Save\",\"update\":\"Update\",\"previousLabel\":\"Previous\",\"selectFormat\":\"Select a format\",\"column\":\"Column\",\"editToViewAll\":\"5 of %d items shown. Edit field to view all\",\"selectAll\":\"Select All\",\"enterValue\":\"Enter a value\",\"formTitle\":\"Untitled Form\",\"formDescription\":\"We would love to hear from you! Please fill out this form and we will get in touch with you shortly.\",\"formConfirmationMessage\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"submitButtonText\":\"Submit Button Text\",\"submitImageAltText\":\"Submit Image Alt Text\",\"buttonText\":\"Submit\",\"pageButtonText\":\"Button Text\",\"nextPageButtonAltText\":\"Next Image Alt Text\",\"previousPageButtonAltText\":\"Previous Image Alt Text\",\"next_page_button\":\"Next\",\"previous_page_button\":\"Previous\",\"buttonDescription\":\"The submit button for this form\",\"loading\":\"Loading...\",\"thisFieldIf\":\"this field if\",\"thisSectionIf\":\"this section if\",\"thisPage\":\"this page if\",\"thisFormButton\":\"this form button if\",\"show\":\"Show\",\"hide\":\"Hide\",\"enable\":\"Enable\",\"disable\":\"Disable\",\"enabled\":\"Enabled\",\"disabled\":\"Disabled\",\"configure\":\"Configure\",\"conditional_logic_text\":\"Conditional Logic\",\"conditional_logic_desc\":\"Conditional logic allows you to change what the user sees depending on the fields they select.\",\"conditional_logic_a11y\":\"Adding conditional logic to the form submit button could cause usability problems for some users and negatively impact the accessibility of your form. Learn more about button conditional logic in our <a href=\\\"https:\\\/\\\/docs.gravityforms.com\\\/field-accessibility-warning\\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">documentation<span class=\\\"screen-reader-text\\\">(opens in a new tab)<\\\/span>&nbsp;<span class=\\\"gform-icon gform-icon--external-link\\\" aria-hidden=\\\"true\\\"><\\\/span><\\\/a>.\",\"page\":\"Page\",\"next_button\":\"Next Button\",\"button\":\"Submit Button\",\"all\":\"All\",\"any\":\"Any\",\"ofTheFollowingMatch\":\"of the following match:\",\"is\":\"is\",\"isNot\":\"is not\",\"greaterThan\":\"greater than\",\"lessThan\":\"less than\",\"contains\":\"contains\",\"startsWith\":\"starts with\",\"endsWith\":\"ends with\",\"emptyChoice\":\"Empty (no choices selected)\",\"alertLegacyMode\":\"This form has legacy markup enabled and doesn\\u2019t support field resizing within the editor. Please disable legacy markup in the form settings to enable live resizing.\",\"thisConfirmation\":\"Use this confirmation if\",\"thisNotification\":\"Send this notification if\",\"confirmationSave\":\"Save\",\"confirmationSaving\":\"Saving...\",\"confirmationAreYouSure\":\"Are you sure you wish to cancel these changes?\",\"confirmationIssueSaving\":\"There was an issue saving this confirmation.\",\"confirmationConfirmDelete\":\"Are you sure you wish to delete this confirmation?\",\"confirmationIssueDeleting\":\"There was an issue deleting this confirmation.\",\"confirmationConfirmDiscard\":\"There are unsaved changes to the current confirmation. Would you like to discard these changes?\",\"confirmationDefaultName\":\"Untitled Confirmation\",\"confirmationDefaultMessage\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"confirmationInvalidPageSelection\":\"Please select a page.\",\"confirmationInvalidRedirect\":\"Please enter a URL.\",\"confirmationInvalidName\":\"Please enter a confirmation name.\",\"confirmationDeleteField\":\"Deleting this field will also delete all entry data associated with it. 'Cancel' to abort. 'OK' to delete.\",\"confirmationDeleteDisplayField\":\"You're about to delete this field. 'Cancel' to stop. 'OK' to delete\",\"confirmationDeleteDisplayFieldTitle\":\"Warning\",\"conditionalLogicDependency\":\"This form contains {type} conditional logic dependent upon this field. Deleting this field will deactivate those conditional logic rules and also delete all entry data associated with the field. 'Cancel' to abort. 'OK' to delete.\",\"conditionalLogicDependencyChoice\":\"This form contains {type} conditional logic dependent upon this choice. Are you sure you want to delete this choice? 'Cancel' to abort. 'OK' to delete.\",\"conditionalLogicDependencyChoiceEdit\":\"This form contains {type} conditional logic dependent upon this choice. Are you sure you want to modify this choice? 'Cancel' to abort. 'OK' to continue.\",\"conditionalLogicDependencyAdminOnly\":\"This form contains {type} conditional logic dependent upon this field. Are you sure you want to mark this field as Administrative? 'Cancel' to abort. 'OK' to continue.\",\"conditionalLogicRichTextEditorWarning\":\"This form contains conditional logic dependent upon this field. This will no longer work if the Rich Text Editor is enabled.  Are you sure you want to enable the Rich Text Editor?  'Cancel' to abort. 'OK' to continue.\",\"conditionalLogicTypeButton\":\"button\",\"conditionalLogicTypeConfirmation\":\"confirmation\",\"conditionalLogicTypeNotification\":\"notification\",\"conditionalLogicTypeNoficationRouting\":\"notification routing\",\"conditionalLogicTypeField\":\"field\",\"conditionalLogicTypeFeed\":\"feed\",\"conditionalLogicWarningTitle\":\"Conditional Logic Warning\",\"mergeTagsText\":\"Insert Merge Tags\",\"baseUrl\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/wp-content\\\/plugins\\\/gravityforms\",\"gf_currency_config\":{\"name\":\"Euro\",\"symbol_left\":\"\",\"symbol_right\":\"&#8364;\",\"symbol_padding\":\" \",\"thousand_separator\":\".\",\"decimal_separator\":\",\",\"decimals\":2,\"code\":\"EUR\"},\"otherChoiceValue\":\"Other\",\"isFormTrash\":false,\"currentlyAddingField\":false,\"visibilityOptions\":[{\"label\":\"Visible\",\"value\":\"visible\",\"description\":\"Default option. The field is visible when viewing the form.\"},{\"label\":\"Hidden\",\"value\":\"hidden\",\"description\":\"The field is hidden when viewing the form. Useful when you require the functionality of this field but do not want the user to be able to see this field.\"},{\"label\":\"Administrative\",\"value\":\"administrative\",\"description\":\"The field is only visible when administering submitted entries. The field is not visible or functional when viewing the form.\"}],\"addFieldFilter\":\"Add a condition\",\"removeFieldFilter\":\"Remove a condition\",\"filterAndAny\":\"{0} of the following match:\",\"customChoices\":\"Custom Choices\",\"predefinedChoices\":\"Predefined Choices\",\"fieldLabelAriaLabel\":\"{field_label} - {field_type}, jump to this field&#039;s settings\",\"fieldCanBeAddedTitle\":\"Field Limit\",\"fieldCanBeAddedMessage\":\"A form can only contain one {field_type} field.\",\"fieldCanBeAddedProductTitle\":\"Missing Product field\",\"fieldCanBeAddedProduct\":\"You must add a Product field to the form first.\",\"fieldForbiddenInRepeaterTitle\":\"Unrepeatable Field\",\"fieldForbiddenInRepeater\":\"{field_type} fields are not supported in Repeaters.\",\"legacyMarkupTitle\":\"Unsupported Markup\",\"fieldCanBeAddedMultipleChoice\":\"You cannot add a Multiple Choice field to a form that uses legacy markup. Please edit the form settings and turn off Legacy Markup.\",\"fieldCanBeAddedImageChoice\":\"You cannot add an Image Choice field to a form that uses legacy markup. Please edit the form settings and turn off Legacy Markup.\",\"FieldAjaxonErrorTitle\":\"Error\",\"StartAddFieldAjaxonError\":\"Ajax error while adding field. Please refresh the page and try again.\",\"StartChangeInputTypeAjaxonError\":\"Ajax error while changing input type. Please refresh the page and try again.\",\"MissingNameCustomChoicesTitle\":\"Missing Name\",\"MissingNameCustomChoices\":\"Please give this custom choice a name.\",\"DuplicateNameCustomChoicesTitle\":\"Duplicate Name\",\"DuplicateNameCustomChoices\":\"This custom choice name is already in use. Please enter another name.\",\"DuplicateTitleMessageTitle\":\"Duplicate Title\",\"DuplicateTitleMessage\":\"The form title you have entered is already taken. Please enter a unique form title.\",\"ValidateFormMissingFormTitleTitle\":\"Missing Form Title\",\"ValidateFormMissingFormTitle\":\"Please enter a Title for this form. When adding the form to a page or post, you will have the option to hide the title.\",\"ValidateFormEmptyPageTitle\":\"Empty Page\",\"ValidateFormEmptyPage\":\"This form currently has one or more pages without any fields. Blank pages are a result of Page Breaks that are positioned as the first or last field in the form or right after each other. Please adjust the Page Breaks.\",\"ValidateFormMissingProductLabelTitle\":\"Missing Product Label\",\"ValidateFormMissingProductLabel\":\"This form has a Product field with a blank label. Please enter a label for every Product field.\",\"ValidateFormMissingProductFieldTitle\":\"Missing Product field\",\"ValidateFormMissingProductField\":\"This form has an Option field without a Product field. You must add a Product field to your form.\",\"FormulaIsValidTitle\":\"Success\",\"FormulaIsValid\":\"The formula appears to be valid.\",\"FormulaIsInvalid\":\"There appears to be a problem with the formula.\",\"DeleteFormTitle\":\"Confirm\",\"DeleteForm\":\"You are about to move this form to the trash. &#039;Cancel&#039; to abort. &#039;OK&#039; to delete.\",\"DeleteCustomChoice\":\"Delete this custom choice list? &#039;Cancel&#039; to abort. &#039;OK&#039; to delete.\",\"FieldAdded\":\"&nbsp;field added to form\",\"nameFieldDefaultPrefixes\":[{\"text\":\"Dr.\",\"value\":\"Dr.\"},{\"text\":\"Miss\",\"value\":\"Miss\"},{\"text\":\"Mr.\",\"value\":\"Mr.\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\"},{\"text\":\"Ms.\",\"value\":\"Ms.\"},{\"text\":\"Mx.\",\"value\":\"Mx.\"},{\"text\":\"Prof.\",\"value\":\"Prof.\"},{\"text\":\"Rev.\",\"value\":\"Rev.\"}]};\t\t\t<\/script>\n\n            \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Poster-upload Submissions are welcome until 25 March 2024 \u201e*\u201c zeigt erforderliche Felder an SalutationPlease chooseMs.Mr.Academic Degree Name* First Name Last Name Company \/ Institution* Department Position Address Street, No. City ZIP AfghanistanAlbanienAlgerienAmerikanisch-SamoaAmerikanische JungferninselnAndorraAngolaAnguillaAntarktisAntigua und BarbudaArgentinienArmenienArubaAserbaidschanAustralienBahamasBahrainBangladeshBarbadosBelgienBelizeBeninBermudaBhutanBolivienBosnien und HerzegowinaBotswanaBouvetinselBrasilienBritische JungferninselnBritisches Territorium im Indischen OzeanBrunei DarussalamBulgarienBurkina FasoBurundiCaymen InselnChileChinaCookinselnCosta RicaCura\u00e7aoC\u00f4te d&#039;IvoireDemokratische Volksrepublik LaosDeutschlandDjiboutiDominicaDominikanische RepublikD\u00e4nemarkEcuadorEl SalvadorEritreaEstlandEswatiniFalklandinselnFidschiFinnlandFrankreichFranz\u00f6sisch-GuayanaFranz\u00f6sisch-PolynesienFranz\u00f6sische S\u00fcd- und AntarktisgebieteFutuna (Wallis [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-3382","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Submit a poster - Vehicle-2-Grid Conference<\/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:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Submit a poster - Vehicle-2-Grid Conference\" \/>\n<meta property=\"og:description\" content=\"Poster-upload Submissions are welcome until 25 March 2024 \u201e*\u201c zeigt erforderliche Felder an SalutationPlease chooseMs.Mr.Academic Degree Name* First Name Last Name Company \/ Institution* Department Position Address Street, No. City ZIP AfghanistanAlbanienAlgerienAmerikanisch-SamoaAmerikanische JungferninselnAndorraAngolaAnguillaAntarktisAntigua und BarbudaArgentinienArmenienArubaAserbaidschanAustralienBahamasBahrainBangladeshBarbadosBelgienBelizeBeninBermudaBhutanBolivienBosnien und HerzegowinaBotswanaBouvetinselBrasilienBritische JungferninselnBritisches Territorium im Indischen OzeanBrunei DarussalamBulgarienBurkina FasoBurundiCaymen InselnChileChinaCookinselnCosta RicaCura\u00e7aoC\u00f4te d&#039;IvoireDemokratische Volksrepublik LaosDeutschlandDjiboutiDominicaDominikanische RepublikD\u00e4nemarkEcuadorEl SalvadorEritreaEstlandEswatiniFalklandinselnFidschiFinnlandFrankreichFranz\u00f6sisch-GuayanaFranz\u00f6sisch-PolynesienFranz\u00f6sische S\u00fcd- und AntarktisgebieteFutuna (Wallis [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/\" \/>\n<meta property=\"og:site_name\" content=\"Vehicle-2-Grid Conference\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-01T12:36:32+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:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/submit-a-poster\\\/\",\"url\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/submit-a-poster\\\/\",\"name\":\"Submit a poster - Vehicle-2-Grid Conference\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/#website\"},\"datePublished\":\"2023-12-08T11:29:06+00:00\",\"dateModified\":\"2024-02-01T12:36:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/submit-a-poster\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/submit-a-poster\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/submit-a-poster\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Submit a poster\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/\",\"name\":\"Vehicle-2-Grid Conference\",\"description\":\"Vehicle-2-Grid Conference \u2013 Smart Charging (V1G), Vehicle-to-home (V2H), Vehicle-to-grid (V2G) Elektroautobatterien k\u00f6nnen mehr als nur Autos bewegen!\",\"publisher\":{\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/#organization\",\"name\":\"Haus der Technik e.V.\",\"url\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Favicon-vehicle-2-grid.jpg\",\"contentUrl\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Favicon-vehicle-2-grid.jpg\",\"width\":512,\"height\":512,\"caption\":\"Haus der Technik e.V.\"},\"image\":{\"@id\":\"https:\\\/\\\/2024.vehicle-2-grid.eu\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Submit a poster - Vehicle-2-Grid Conference","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:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/","og_locale":"en_US","og_type":"article","og_title":"Submit a poster - Vehicle-2-Grid Conference","og_description":"Poster-upload Submissions are welcome until 25 March 2024 \u201e*\u201c zeigt erforderliche Felder an SalutationPlease chooseMs.Mr.Academic Degree Name* First Name Last Name Company \/ Institution* Department Position Address Street, No. City ZIP AfghanistanAlbanienAlgerienAmerikanisch-SamoaAmerikanische JungferninselnAndorraAngolaAnguillaAntarktisAntigua und BarbudaArgentinienArmenienArubaAserbaidschanAustralienBahamasBahrainBangladeshBarbadosBelgienBelizeBeninBermudaBhutanBolivienBosnien und HerzegowinaBotswanaBouvetinselBrasilienBritische JungferninselnBritisches Territorium im Indischen OzeanBrunei DarussalamBulgarienBurkina FasoBurundiCaymen InselnChileChinaCookinselnCosta RicaCura\u00e7aoC\u00f4te d&#039;IvoireDemokratische Volksrepublik LaosDeutschlandDjiboutiDominicaDominikanische RepublikD\u00e4nemarkEcuadorEl SalvadorEritreaEstlandEswatiniFalklandinselnFidschiFinnlandFrankreichFranz\u00f6sisch-GuayanaFranz\u00f6sisch-PolynesienFranz\u00f6sische S\u00fcd- und AntarktisgebieteFutuna (Wallis [&hellip;]","og_url":"https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/","og_site_name":"Vehicle-2-Grid Conference","article_modified_time":"2024-02-01T12:36:32+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/","url":"https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/","name":"Submit a poster - Vehicle-2-Grid Conference","isPartOf":{"@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/#website"},"datePublished":"2023-12-08T11:29:06+00:00","dateModified":"2024-02-01T12:36:32+00:00","breadcrumb":{"@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/submit-a-poster\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/2024.vehicle-2-grid.eu\/en\/"},{"@type":"ListItem","position":2,"name":"Submit a poster"}]},{"@type":"WebSite","@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/#website","url":"https:\/\/2024.vehicle-2-grid.eu\/en\/","name":"Vehicle-2-Grid Conference","description":"Vehicle-2-Grid Conference \u2013 Smart Charging (V1G), Vehicle-to-home (V2H), Vehicle-to-grid (V2G) Elektroautobatterien k\u00f6nnen mehr als nur Autos bewegen!","publisher":{"@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/2024.vehicle-2-grid.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/#organization","name":"Haus der Technik e.V.","url":"https:\/\/2024.vehicle-2-grid.eu\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/#\/schema\/logo\/image\/","url":"https:\/\/2024.vehicle-2-grid.eu\/wp-content\/uploads\/2021\/08\/Favicon-vehicle-2-grid.jpg","contentUrl":"https:\/\/2024.vehicle-2-grid.eu\/wp-content\/uploads\/2021\/08\/Favicon-vehicle-2-grid.jpg","width":512,"height":512,"caption":"Haus der Technik e.V."},"image":{"@id":"https:\/\/2024.vehicle-2-grid.eu\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/pages\/3382","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/comments?post=3382"}],"version-history":[{"count":6,"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/pages\/3382\/revisions"}],"predecessor-version":[{"id":3832,"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/pages\/3382\/revisions\/3832"}],"wp:attachment":[{"href":"https:\/\/2024.vehicle-2-grid.eu\/en\/wp-json\/wp\/v2\/media?parent=3382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}