{"id":47798,"date":"2024-01-10T15:25:45","date_gmt":"2024-01-10T15:25:45","guid":{"rendered":"https:\/\/www.wbscodingschool.com\/apply\/"},"modified":"2026-07-13T15:48:17","modified_gmt":"2026-07-13T15:48:17","slug":"bewerben","status":"publish","type":"page","link":"https:\/\/www.wbscodingschool.com\/de\/bewerben\/","title":{"rendered":"Bewerbung"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"47798\" class=\"elementor elementor-47798 elementor-1936\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"has_ae_slider elementor-element elementor-element-b0c5566 e-flex e-con-boxed ae-bg-gallery-type-default e-con e-parent\" data-id=\"b0c5566\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"has_ae_slider elementor-element elementor-element-a20c2e8 e-con-full e-flex ae-bg-gallery-type-default e-con e-child\" data-id=\"a20c2e8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22f3df3 elementor-widget elementor-widget-shortcode\" data-id=\"22f3df3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><script>\r\n(function() {\r\n    function initApplyFormLogic() {\r\n        const pageLang = document.documentElement.lang || 'en'; \r\n        const isGerman = pageLang.toLowerCase().startsWith('de');\r\n\r\n        \/\/ 1. Fetch User IP\r\n        fetch('\/wp-admin\/admin-ajax.php?action=get_user_ip')\r\n            .then(response => response.text())\r\n            .then(ip => {\r\n                const ipField = document.getElementById('form-field-ip');\r\n                if (ipField) {\r\n                    ipField.value = ip.trim();\r\n                }\r\n            })\r\n            .catch(error => console.error('Error fetching IP address:', error));\r\n\r\n        \/\/ 2. Elementor Form Success Handler\r\n        if (typeof jQuery !== 'undefined') {\r\n            \/\/ .off() prevents duplicate triggers if the shortcode renders multiple times\r\n            jQuery(document).off('submit_success.wbsApply').on('submit_success.wbsApply', function(event, response) {\r\n                const body = JSON.parse(response.data[1].body);\r\n                let url;\r\n                const newDeal = body.existing_deal ? `&existing=${body.existing_deal}` : '';            \r\n                const situationParam = (body?.current_situation === 'studying') ? '&situation=studying' : '';\r\n\r\n                \/\/ DataLayer Event\r\n                window.dataLayer = window.dataLayer || [];\r\n                const prospectData = {\r\n                    'event': 'new_prospect',\r\n                    'prospect_segment': body.segment || 'N\/A',\r\n                    'language': window.location.href.includes('\/de\/') ? 'de' : 'en',\r\n                    'first_name': document.getElementById('form-field-firstname')?.value || '',\r\n                    'last_name': document.getElementById('form-field-lastname')?.value || '',\r\n                    'email': document.getElementById('form-field-email')?.value || '',\r\n                    'phone': document.getElementById('form-field-phone')?.value || '',\r\n                    'country': document.getElementById('form-field-country')?.value || '',\r\n                    'current_status': document.getElementById('form-field-current_situation')?.value || ''\r\n                };\r\n\r\n                window.dataLayer.push(prospectData);\r\n\r\n                \/\/ Redirect Logic\r\n                if (body.redirect && body.reason === 'interview_limit_exceeded') {\r\n                    url = isGerman \r\n                        ? 'https:\/\/www.wbscodingschool.com\/de\/multiple-bookings\/' \r\n                        : 'https:\/\/www.wbscodingschool.com\/multiple-bookings\/';\r\n                } \r\n                else if (body.redirect && body.reason === 'meeting_scheduled') {\r\n                    url = isGerman \r\n                        ? 'https:\/\/www.wbscodingschool.com\/de\/termin-bereits-gebucht\/' \r\n                        : 'https:\/\/www.wbscodingschool.com\/meeting-already-booked\/';\r\n                } \r\n                else if (body.redirect && body.reason === 'interview_failed') {\r\n                    url = isGerman \r\n                        ? 'https:\/\/www.wbscodingschool.com\/de\/interview-schon-gemacht\/' \r\n                        : 'https:\/\/www.wbscodingschool.com\/interview-already-done\/';\r\n                } else if (body.segment === 'high-german') {\r\n                    url = 'https:\/\/www.wbscodingschool.com\/de\/danke-hoch\/';\r\n                } else if (body.segment === 'high-english') {\r\n                    url = 'https:\/\/www.wbscodingschool.com\/thank-you-high\/';\r\n                } else if (body.segment === 'mid-de-german') {\r\n                    url = `https:\/\/www.wbscodingschool.com\/de\/danke?id=${body.id}${newDeal}${situationParam}`;\r\n                } else if (body.id) {\r\n                    url = `https:\/\/www.wbscodingschool.com\/thank-you-apply?id=${body.id}${newDeal}${situationParam}`;\r\n                } else {\r\n                    url = 'https:\/\/www.wbscodingschool.com\/thank-you-apply\/';\r\n                }\r\n\r\n                window.location.href = url;\r\n            });\r\n\r\n            \/\/ 3. Enable disabled inputs on form submit\r\n            document.querySelectorAll('form').forEach(form => {\r\n                form.addEventListener('submit', () => {\r\n                    form.querySelectorAll(':disabled').forEach(field => field.removeAttribute('disabled'));\r\n                });\r\n            });\r\n        }\r\n    }\r\n\r\n    \/\/ Execute immediately if DOM is ready, or wait if still loading\r\n    if (document.readyState === 'loading') {\r\n        document.addEventListener('DOMContentLoaded', initApplyFormLogic);\r\n    } else {\r\n        initApplyFormLogic();\r\n    }\r\n})();\r\n<\/script>\r\n\r\n<style>\r\n    .elementor-field-group-privacy_policy #form-field-privacy_policy,\r\n    .elementor-field-group-privacy_policy .elementor-field-label {\r\n        display: none;\r\n    }\r\n<\/style><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5e96d4c elementor-widget elementor-widget-heading\" data-id=\"5e96d4c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">LOS GEHT'S:<br><span class=\"gradient\">\n\nJetzt bewerben\n\n<\/span><\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fbc9de7 elementor-widget-tablet__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"fbc9de7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Du willst im Tech-Bereich durchstarten und relevante Skills lernen, die Arbeitgeber:innen \u00fcberzeugen? Dann bist du hier genau richtig! F\u00fclle einfach das Bewerbungsformular aus und vereinbare einen Gespr\u00e4chstermin mit uns. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"has_ae_slider elementor-element elementor-element-37b6631 e-con-full e-flex ae-bg-gallery-type-default e-con e-child\" data-id=\"37b6631\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-58dcfc6 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"58dcfc6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><a href=\"https:\/\/www.google.com\/maps\/place\/WBS+CODING+SCHOOL+Hybrid+Coding+Bootcamp\/@52.457131,13.5400712,15z\/data=!4m8!3m7!1s0x47a845aaa1e6aaf5:0x4a9c655f0b058b03!8m2!3d52.457131!4d13.5400712!9m1!1b1!16s%2Fg%2F11j7d12yyk?entry=ttu\" tabindex=\"-1\" target=\"_blank\" rel=\"noopener\"><img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/google-reviews-logo-300x300.webp\" class=\"elementor-animation-grow attachment-medium size-medium wp-image-54065\" alt=\"\" srcset=\"https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/google-reviews-logo-300x300.webp 300w, https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/google-reviews-logo-150x150.webp 150w, https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/google-reviews-logo.webp 343w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure><div class=\"elementor-image-box-content\"><span class=\"elementor-image-box-title\"><a href=\"https:\/\/www.google.com\/maps\/place\/WBS+CODING+SCHOOL+Hybrid+Coding+Bootcamp\/@52.457131,13.5400712,15z\/data=!4m8!3m7!1s0x47a845aaa1e6aaf5:0x4a9c655f0b058b03!8m2!3d52.457131!4d13.5400712!9m1!1b1!16s%2Fg%2F11j7d12yyk?entry=ttu\" target=\"_blank\" rel=\"noopener\">4,9\/5<\/a><\/span><p class=\"elementor-image-box-description\">Google<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0f5850d elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"0f5850d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><a href=\"https:\/\/www.coursereport.com\/schools\/wbs-coding-school\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/Course-Report-reviews-logo-300x300.webp\" class=\"elementor-animation-grow attachment-medium size-medium wp-image-54070\" alt=\"\" srcset=\"https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/Course-Report-reviews-logo-300x300.webp 300w, https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/Course-Report-reviews-logo-150x150.webp 150w, https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/Course-Report-reviews-logo.webp 343w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure><div class=\"elementor-image-box-content\"><span class=\"elementor-image-box-title\"><a href=\"https:\/\/www.coursereport.com\/schools\/wbs-coding-school\" target=\"_blank\" rel=\"noopener\">4,8\/5<\/a><\/span><p class=\"elementor-image-box-description\">Course Report<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6ce66c5 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"6ce66c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><a href=\"https:\/\/www.switchup.org\/bootcamps\/wbs-coding-school\" target=\"_blank\" tabindex=\"-1\" rel=\"noopener\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/switchup-reviews-logo-300x300.webp\" class=\"elementor-animation-grow attachment-medium size-medium wp-image-54075\" alt=\"\" srcset=\"https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/switchup-reviews-logo-300x300.webp 300w, https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/switchup-reviews-logo-150x150.webp 150w, https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2024\/06\/switchup-reviews-logo.webp 343w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure><div class=\"elementor-image-box-content\"><span class=\"elementor-image-box-title\"><a href=\"https:\/\/www.switchup.org\/bootcamps\/wbs-coding-school\" target=\"_blank\" rel=\"noopener\">4,9\/5<\/a><\/span><p class=\"elementor-image-box-description\">Switchup<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa22483 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"aa22483\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><a href=\"https:\/\/www.trustpilot.com\/review\/www.wbscodingschool.com\" target=\"_blank\" tabindex=\"-1\"><img loading=\"lazy\" decoding=\"async\" width=\"105\" height=\"101\" src=\"https:\/\/www.wbscodingschool.com\/wp-content\/uploads\/2025\/04\/Trustpilot-star-copy.webp\" class=\"elementor-animation-grow attachment-medium size-medium wp-image-62145\" alt=\"\"><\/a><\/figure><div class=\"elementor-image-box-content\"><span class=\"elementor-image-box-title\"><a href=\"https:\/\/www.trustpilot.com\/review\/www.wbscodingschool.com\" target=\"_blank\">4,8\/5<\/a><\/span><p class=\"elementor-image-box-description\">Trustpilot<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-410bc54 elementor-testimonial--align-left elementor-widget-tablet__width-inherit elementor-hidden-mobile elementor-testimonial--skin-default elementor-testimonial--layout-image_inline elementor-pagination-type-bullets elementor-widget elementor-widget-testimonial-carousel\" data-id=\"410bc54\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_per_view&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;space_between&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;pagination&quot;:&quot;bullets&quot;,&quot;speed&quot;:500,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;loop&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;space_between_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;space_between_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]}}\" data-widget_type=\"testimonial-carousel.default\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Slides\">\n\t\t\t\t<div class=\"swiper-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>Was WBS CODING SCHOOL wirklich auszeichnet, ist die hervorragende Unterst\u00fctzung und Betreuung durch die Trainer:innen und die anderen Teilnehmenden. Unsere Fragen wurden immer beantwortet, uns wurde Unterst\u00fctzung geboten, Anleitungen gegeben und konstruktives Feedback geliefert. So wurden wir ermutigt und konnten uns sicher w\u00e4hrend des Lernprozesses f\u00fchlen.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Anne Pohlmann<\/span><span class=\"elementor-testimonial__title\">Absolventin Full-Stack Web- & App-Entwicklung<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>Wenn du dich zwischen verschiedenen Kursen entscheiden musst und noch Zweifel hast, w\u00fcrde ich dir diese Bildungseinrichtung empfehlen, weil hier wirklich die Qualit\u00e4t der Weiterbildung im Fokus steht. Jede Woche gibt es ein Meeting mit einer Trainer:in und einer Mitarbeiter:in, bei dem du gefragt wirst, wie deine Woche lief. Sie h\u00f6ren den Teilnehmenden wirklich zu und das finde ich toll.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Hanna Bezversheko<\/span><span class=\"elementor-testimonial__title\">Absolventin UX\/UI Produktdesign<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>Die Weiterbildung bot eine perfekte Balance zwischen anspruchsvollen Aufgaben und fesselnden Vortr\u00e4gen. Aber auch im Allgemeinen hat mich die Bildungseinrichtung beeindruckt \u2013 der Lehrplan ist mit viel Liebe zum Detail ausgearbeitet. Au\u00dferdem war jede Mitarbeiter:in, die ich kennenlernen durfte, unglaublich freundlich und professionell.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Anton Braslavskii<\/span><span class=\"elementor-testimonial__title\">Absolvent Data Science<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_ae_slider elementor-element elementor-element-83cc472 e-con-full e-flex ae-bg-gallery-type-default e-con e-child\" data-id=\"83cc472\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15118eb elementor-button-align-stretch elementor-widget elementor-widget-form\" data-id=\"15118eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;weiter&quot;,&quot;step_previous_label&quot;:&quot;zur\\u00fcck&quot;,&quot;step_type&quot;:&quot;number&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" id=\"applyform\" name=\"Minimal general Apply Form\" aria-label=\"Minimal general Apply Form\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"47798\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"15118eb\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"\" \/>\n\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-select elementor-field-group elementor-column elementor-field-group-course elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-course\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tW\u00e4hle eine Weiterbildung \t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field elementor-select-wrapper remove-before \">\n\t\t\t<div class=\"select-caret-down-wrapper\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-caret-down\" viewBox=\"0 0 571.4 571.4\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M571 393Q571 407 561 418L311 668Q300 679 286 679T261 668L11 418Q0 407 0 393T11 368 36 357H536Q550 357 561 368T571 393Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<select name=\"form_fields[course]\" id=\"form-field-course\" class=\"elementor-field-textual elementor-size-sm\" required=\"required\">\n\t\t\t\t\t\t\t\t\t<option value=\"\">Kurs ausw\u00e4hlen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"\">------ Langzeitkurse -------<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"daai\">Data Analytics &amp; AI (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"daai_de\">Data Analytics &amp; AI (Deutsch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"data_ai\">Data Science &amp; AI (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"data_ai_de\">Data Science &amp; AI (Deutsch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"se\">Software Engineering &amp; AI (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"se_de\">Software Engineering &amp; AI (Deutsch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"\">------ Vollzeit Weiterbildungen -------<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"e_aaa\">AI Agents &amp; Automations (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"g_aaa\">AI Agents &amp; Automations (Deutsch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"aib\">KI f\u00fcr den Beruf (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"aig\">KI f\u00fcr den Beruf (Deutsch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"fullstack_ft\">KI-Softwareentwicklung (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"fullstack_ft_de\">KI-Softwareentwicklung (Deutsch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"e_ccai\">AWS Cloud Computing &amp; AI (English)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"daan_ft\">Data Analytics (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"data_ft\">Data Science (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"dpd_ft\">UX\/UI Produktdesign (Englisch)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"\">------Teilzeit Weiterbildungen -------<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"kikom\">KI Kompakt (Deutsch)<\/option>\n\t\t\t\t\t\t\t<\/select>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-enrollment_type elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[enrollment_type]\" id=\"form-field-enrollment_type\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-firstname elementor-col-50 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-firstname\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tVorname\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[firstname]\" id=\"form-field-firstname\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Jane\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-lastname elementor-col-50 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-lastname\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tNachname\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[lastname]\" id=\"form-field-lastname\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Doe\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-select elementor-field-group elementor-column elementor-field-group-country elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-country\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tWohnsitz\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field elementor-select-wrapper remove-before \">\n\t\t\t<div class=\"select-caret-down-wrapper\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-caret-down\" viewBox=\"0 0 571.4 571.4\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M571 393Q571 407 561 418L311 668Q300 679 286 679T261 668L11 418Q0 407 0 393T11 368 36 357H536Q550 357 561 368T571 393Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<select name=\"form_fields[country]\" id=\"form-field-country\" class=\"elementor-field-textual elementor-size-sm\" required=\"required\">\n\t\t\t\t\t\t\t\t\t<option value=\"\">Bitte w\u00e4hle dein Land aus<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Germany\">Deutschland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Spain\">Spanien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"United Kingdom\">Vereinigtes K\u00f6nigreich<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Austria\">\u00d6sterreich<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Belgium\">Belgien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Albania\">Albanien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Andorra\">Andorra<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Armenia\">Armenien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Azerbaijan\">Aserbaidschan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Belarus\">Belarus<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bosnia and Herzegovina\">Bosnien und Herzegowina<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Bulgaria\">Bulgarien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Croatia\">Kroatien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Cyprus\">Zypern<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Czech Republic\">Tschechische Republik<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Denmark\">D\u00e4nemark<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Estonia\">Estland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Finland\">Finnland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"France\">Frankreich<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Georgia\">Georgien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Greece\">Griechenland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Hungary\">Ungarn<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Iceland\">Island<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Ireland\">Irland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Italy\">Italien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Latvia\">Lettland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Liechtenstein\">Liechtenstein<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Lithuania\">Litauen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Luxembourg\">Luxemburg<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Malta\">Malta<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Moldova\">Moldawien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Monaco\">Monaco<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Montenegro\">Montenegro<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Netherlands\">Niederlande<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Nordmazedonien (Mazedonien, FYROM)\">Nordmazedonien (Mazedonien, FYROM)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Norway\">Norwegen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Poland\">Polen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Portugal\">Portugal<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Romania\">Rum\u00e4nien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Russia\">Russland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"San Marino\">San Marino<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Serbia\">Serbien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Slovakia\">Slowakei<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Slovenia\">Slowenien<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Sweden\">Schweden<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Switzerland\">Schweiz<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Turkey\">T\u00fcrkei<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Ukraine\">Ukraine<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Vatican City\">Vatikanstadt<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Other\">Sonstiges<\/option>\n\t\t\t\t\t\t\t<\/select>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-email\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tEmail\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"jane.doe@example.com\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-phone elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-phone\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tTelefonnummer (Bitte auch die Vorwahl deines Landes angeben)\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" pattern=\"^\\+\\d{1,3}\\s?\\d{4,14}$\" data-regex=\"true\" type=\"text\" name=\"form_fields[phone]\" id=\"form-field-phone\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"(z.B. +4915609092384)\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-select elementor-field-group elementor-column elementor-field-group-current_situation elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-current_situation\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tWas beschreibt deine aktuelle Situation am besten\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field elementor-select-wrapper remove-before \">\n\t\t\t<div class=\"select-caret-down-wrapper\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-caret-down\" viewBox=\"0 0 571.4 571.4\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M571 393Q571 407 561 418L311 668Q300 679 286 679T261 668L11 418Q0 407 0 393T11 368 36 357H536Q550 357 561 368T571 393Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<select name=\"form_fields[current_situation]\" id=\"form-field-current_situation\" class=\"elementor-field-textual elementor-size-sm\" required=\"required\">\n\t\t\t\t\t\t\t\t\t<option value=\"\">Bitte w\u00e4hle deine aktuelle Situation<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"unemployed\">Ich bin arbeitslos oder werde bald arbeitslos<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"full\">Ich arbeite Vollzeit, Teilzeit oder als Freelancer:in<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"more6month\">Ich habe mein Studium vor mehr als 6 Monaten abgeschlossen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"less6month\">Ich habe meine Studium vor weniger als 6 Monaten abgeschlossen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"studying\">Ich studiere oder absolviere eine Ausbildung<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"unsure\">Ich bin mir nicht sicher<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"Visa\">Ich befinde mich mit einem Visum in Deutschland<\/option>\n\t\t\t\t\t\t\t<\/select>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-acceptance elementor-field-group elementor-column elementor-field-group-doi_subscription elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-doi_subscription\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tImmer informiert bleiben\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-subgroup\">\n\t\t\t<span class=\"elementor-field-option\">\n\t\t\t\t<input type=\"checkbox\" name=\"form_fields[doi_subscription]\" id=\"form-field-doi_subscription\" class=\"elementor-field elementor-size-sm  elementor-acceptance-field\">\n\t\t\t\t<label for=\"form-field-doi_subscription\">Ja, ich m\u00f6chte in Zukunft \u00fcber Bildungsthemen, Aktionen und Angebote der WBS CODING SCHOOL per E-Mail informiert werden. Du kannst dich jederzeit wieder abmelden. <\/label>\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-referral elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[referral]\" id=\"form-field-referral\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-country_code elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[country_code]\" id=\"form-field-country_code\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" value=\"US\n\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-ip elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[ip]\" id=\"form-field-ip\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" value=\"216.73.217.174\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-preferred_language elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[preferred_language]\" id=\"form-field-preferred_language\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" value=\"en\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-hidden elementor-field-group elementor-column elementor-field-group-hubspot_device_type elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"hidden\" name=\"form_fields[hubspot_device_type]\" id=\"form-field-hubspot_device_type\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Bewerbung absenden<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eff6aa9 elementor-widget elementor-widget-text-editor\" data-id=\"eff6aa9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Mit dem Absenden meiner Bewerbung erkl\u00e4re ich mich damit einverstanden, per E-Mail, Telefon, SMS oder WhatsApp kontaktiert zu werden, um die Bewerbung zu bearbeiten und vorvertragliche Ma\u00dfnahmen durchzuf\u00fchren. Diese Einwilligung kann ich jederzeit mit Wirkung f\u00fcr die Zukunft widerrufen (z. B. per E-Mail an info@wbscodingschool.com). Ich akzeptiere die <a class=\"notion-link-token notion-focusable-token notion-enable-hover\" tabindex=\"0\" href=\"https:\/\/www.wbscodingschool.com\/de\/datenschutz\/\" rel=\"noopener noreferrer\" data-token-index=\"1\">Datenschutzrichtlinien<\/a> und die <a class=\"notion-link-token notion-focusable-token notion-enable-hover\" tabindex=\"0\" href=\"https:\/\/www.wbscodingschool.com\/terms-and-conditions\/\" rel=\"noopener noreferrer\" data-token-index=\"4\">allgemeinen Gesch\u00e4ftsbedingungen.<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2963594 elementor-testimonial--align-left elementor-widget-tablet__width-inherit elementor-testimonial--skin-bubble elementor-hidden-desktop elementor-hidden-tablet elementor-testimonial--layout-image_inline elementor-pagination-type-bullets elementor-widget elementor-widget-testimonial-carousel\" data-id=\"2963594\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_per_view&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;space_between&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;pagination&quot;:&quot;bullets&quot;,&quot;speed&quot;:500,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;loop&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;space_between_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;space_between_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]}}\" data-widget_type=\"testimonial-carousel.default\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Slides\">\n\t\t\t\t<div class=\"swiper-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>Was WBS CODING SCHOOL wirklich auszeichnet, ist die hervorragende Unterst\u00fctzung und Betreuung durch die Trainer:innen und die anderen Teilnehmenden. Unsere Fragen wurden immer beantwortet, uns wurde Unterst\u00fctzung geboten, Anleitungen gegeben und konstruktives Feedback geliefert. So wurden wir ermutigt und konnten uns sicher w\u00e4hrend des Lernprozesses f\u00fchlen.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Anne Pohlmann<\/span><span class=\"elementor-testimonial__title\">Absolvent Web-  App-Entwicklung<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>Wenn du dich zwischen verschiedenen Kursen entscheiden musst und noch Zweifel hast, w\u00fcrde ich dir diese Bildungseinrichtung empfehlen, weil hier wirklich die Qualit\u00e4t der Weiterbildung im Fokus steht. Jede Woche gibt es ein Meeting mit einer Trainer:in und einer Mitarbeiter:in, bei dem du gefragt wirst, wie deine Woche lief. Sie h\u00f6ren den Teilnehmenden wirklich zu und das finde ich toll.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Hanna Bezversheko<\/span><span class=\"elementor-testimonial__title\">Absolventin UX\/UI Produktdesign<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial__content\">\n\t\t\t\t\t<div class=\"elementor-testimonial__text\">\n\t\t\t\t\t\t<p>Die Weiterbildung bot eine perfekte Balance zwischen anspruchsvollen Aufgaben und fesselnden Vortr\u00e4gen. Aber auch im Allgemeinen hat mich die Bildungseinrichtung beeindruckt \u2013 der Lehrplan ist mit viel Liebe zum Detail ausgearbeitet. Au\u00dferdem war jede Mitarbeiter:in, die ich kennenlernen durfte, unglaublich freundlich und professionell.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-testimonial__footer\">\n\t\t\t\t\t\t\t\t<cite class=\"elementor-testimonial__cite\"><span class=\"elementor-testimonial__name\">Anton Braslavskii<\/span><span class=\"elementor-testimonial__title\">Absolvent Data Science<\/span><\/cite>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>LOS GEHT&#8217;S: Jetzt bewerben Du willst im Tech-Bereich durchstarten und relevante Skills lernen, die Arbeitgeber:innen \u00fcberzeugen? Dann bist du hier genau richtig! F\u00fclle einfach das Bewerbungsformular aus und vereinbare einen Gespr\u00e4chstermin mit uns. 4,9\/5 Google 4,8\/5 Course Report 4,9\/5 Switchup 4,8\/5 Trustpilot Was WBS CODING SCHOOL wirklich auszeichnet, ist die hervorragende Unterst\u00fctzung und Betreuung durch [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"country":[],"class_list":["post-47798","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/pages\/47798","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/comments?post=47798"}],"version-history":[{"count":25,"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/pages\/47798\/revisions"}],"predecessor-version":[{"id":77230,"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/pages\/47798\/revisions\/77230"}],"wp:attachment":[{"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/media?parent=47798"}],"wp:term":[{"taxonomy":"country","embeddable":true,"href":"https:\/\/www.wbscodingschool.com\/de\/wp-json\/wp\/v2\/country?post=47798"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}