CINXE.COM

Not Found

<!DOCTYPE html><!-- Last Published: Tue Nov 05 2024 12:56:40 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="%%PUBLISH_URL_REPLACEMENT%%" data-wf-page="6194f11b220bd75d6ff5bd7f" data-wf-site="616d4dcde6a060807f2977ee" lang="de"><head><meta charset="utf-8"/><title>Not Found</title><meta content="Not Found" property="og:title"/><meta content="Not Found" property="twitter:title"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/616d4dcde6a060807f2977ee/css/scalefox.webflow.57a8a8319.min.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/616d4dcde6a060807f2977ee/618668644edf80224f92021e_favicon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/616d4dcde6a060807f2977ee/618668662157177050ed9149_webicon.png" rel="apple-touch-icon"/><script src="https://consent.cookiefirst.com/banner.js" data-cookiefirst-key="1aeb4d8f-ab53-47c6-8e2b-1c675263351b"></script> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-T64PQ9B');</script> <style> *{ outline: none; } #cookiefirst-policy-page h2, #cookiefirst-policy-page h3, #cookiefirst-policy-page h4 { font-size: 16px; color: #000; margin-bottom: 0; } #cookiefirst-policy-page h2 { margin-bottom: 24px; } </style> <style> #screenlock { background: rgba(255,255,255,0.95); position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 100000; display: flex; justify-content: center; align-items: center; display: none; } #screenlock > div { padding: 20px; text-align: center; width: 100%; max-width: 500px; } #screenlock-title { font-size: 24px; line-height: 1.2; margin-bottom: 12px; } #screenlock-info { font-size: 16px; line-height: 1.2; margin-top: 6px; } .file-remove { cursor: pointer; color: #fe3920; } .field-upload label { z-index: 1000; } </style></head><body><div class="utility-page-wrap"><div class="utility-page-content w-form"><img src="https://cdn.prod.website-files.com/static/page-not-found.211a85e40c.svg" alt=""/><h2>Page Not Found</h2><div>The page you are looking for doesn&#x27;t exist or has been moved</div></div></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=616d4dcde6a060807f2977ee" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/616d4dcde6a060807f2977ee/js/webflow.679eeb275.js" type="text/javascript"></script><script> $(document).ready(function(){ function logoScroll() { var head = $(this).scrollTop() if (head > 2) { $('.header-logo').removeClass('logo-wrapper'); } else { $('.header-logo').addClass('logo-wrapper'); } } $(document).on('scroll', function() { logoScroll(); }); logoScroll(); }); </script> <script> const formUrl = 'https://webflow.scalefox.de/mailer/'; const uploadUrl = 'https://webflow.scalefox.de/upload/'; const successRedirect = 'https://www.scalefox.de/gesendet'; $(function() { 'use strict'; $('#wf_uuid').val(generateUUID()); $('.js-webflowform').on('submit', function(){ const $form = $(this); const $btn = $form.find('button[type=submit], input[type=submit]'); if($form.hasClass('loading')) { return false; } const formData = $form.serialize(); $.ajax({ url: formUrl, type: 'POST', data: formData, beforeSend: function(){ $form.addClass('loading'); $btn.css('opacity', '0.6'); $btn.attr('disabled', true); } }).done(function(data) { if(typeof(data) !== 'object') { data = jQuery.parseJSON(data); } if(data.success === true) { window.location.href = successRedirect; } else { alert(data.message); $form.removeClass('loading'); $btn.css('opacity', '1'); $btn.removeAttr('disabled'); } }).always(function() { }); return false; }); $('#files_list').on('click', '.file-remove', function(){ var $this = $(this); $this.parent().fadeOut(300,function() { $(this).remove(); }); }); }); function generateUUID() { // Public Domain/MIT var d = new Date().getTime();//Timestamp var d2 = ((typeof performance !== 'undefined') && performance.now && (performance.now()*1000)) || 0;//Time in microseconds since page-load or 0 if unsupported return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random() * 16;//random number between 0 and 16 if(d > 0){//Use timestamp until depleted r = (d + r)%16 | 0; d = Math.floor(d/16); } else {//Use microseconds since page-load if supported r = (d2 + r)%16 | 0; d2 = Math.floor(d2/16); } return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16); }); } function _(el){ return document.querySelector(el); } function uploadFile(el){ const formData = new FormData(); let file_index = 1; let file_sizes = 0; Array.prototype.forEach.call(el.files, function(file) { formData.append("file " + file_index, file); file_sizes = file_sizes + file.size; file_index++; }); console.log(file_sizes); if(file_sizes / 1024 / 1024 > 3) { alert('Die Maximal Dateigr枚脽e betr盲gt 3MB.');return; } formData.append('wf_token', _('#wf_token').value); formData.append('wf_uuid', _('#wf_uuid').value); const ajax = new XMLHttpRequest(); ajax.upload.addEventListener("progress", progressHandler, false); ajax.addEventListener("load", completeHandler, false); ajax.addEventListener("error", errorHandler, false); ajax.addEventListener("abort", abortHandler, false); ajax.open("POST", uploadUrl); ajax.send(formData); _('#screenlock').style.display = 'flex'; } function progressHandler(event){ // _("loaded_n_total").innerHTML = "Upload: "+event.loaded+" von "+event.total+" Bytes"; var percent = (event.loaded / event.total) * 100; _('#screenlock-progressbar').value = Math.round(percent); _('#screenlock-info').innerHTML = Math.round(percent)+'% hochgeladen...'; } function completeHandler(event){ // _("loaded_n_total").innerHTML = ''; var data = event.target.responseText; if(typeof(data) !== 'object') { data = jQuery.parseJSON(data); } console.log(data); if(data.success_files.length > 0) { var file_counter = parseInt($('#files_list').attr('data-count')); data.success_files.forEach(function(item){ file_counter++; $('#files_list').append('<div>' + item + ' <span class="file-remove">脳</span><input type="hidden" name="uploaded_files['+file_counter+']" value="' + item + '" /></div>'); }); $('#files_list').attr('data-count',file_counter); } // if(data.error.length > 0) { // alert('Fehler!'); // } _('#screenlock').style.display = 'none'; _('#screenlock-info').innerHTML = ''; _('#screenlock-progressbar').value = 0; } function errorHandler(event){ // _("upload-status").innerHTML = "Upload fehlgeschlagen"; _('#screenlock').style.display = 'none'; alert('Upload fehlgeschlagen'); } function abortHandler(event){ // _("upload-status").innerHTML = "Upload abgerochen"; _('#screenlock').style.display = 'none'; alert('Upload abgerochen'); } function bytesToSize(bytes) { var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; if (bytes == 0) return '0 Byte'; var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024))); return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i]; } </script></body></html>