{source}<!DOCTYPE html>
<html>
<head>


<script>
var checked = 0;
</script>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kontaktdatenformular</title>
<meta name="generator" content="DA-Formmaker 4.8.1">
<!--TEMPLATE:4.2-->
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3.css">
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.2/jquery-ui.min.js"></script>
<script src="/js/jspdf.min.js"></script>
<script src="/js/html2canvas.min.js"></script>
<script src="/js/html2pdf.min.js"></script>
<script>
$(function() {
$('#Geburtsdatum').datepicker({
prevText: '<zurück', prevStatus: '',
prevJumpText: '&#x3c;&#x3c;', prevJumpStatus: '',
nextText: 'weiter>', nextStatus: '',
nextJumpText: '&#x3e;&#x3e;', nextJumpStatus: '',
currentText: 'heute', currentStatus: '',
todayText: 'heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schließen', closeStatus: '',
monthNames: ['Januar','Februar','März','April','Mai','Juni',
'Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','Mar','Apr','Mai',
'Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
showMonthAfterYear: false,
changeMonth: true,
changeYear: true,
yearRange: "1900:2100",
dateFormat:'dd.mm.yy'
}
);




});
</script>

<style type="text/css">
body { background-color:#ffffff;}
h1 { color:#2196f3; font-family:Segoe UI,Arial,sans-serif; font-size:30pt; }
p { color:#000000; font-family:Segoe UI,Arial,sans-serif; font-size:12pt; }



/* Landscape phones and down */
@media (max-width: 480px) {
.mainContainer {
width: 100%;
}
}

@media (min-width: 768px) {
.mainContainer {
width: 80%;
margin-left: auto; margin-right: auto;
}
}

.internal { display: none; }

</style>

<script type="text/javascript">
function addHiddenField(formID, name, value)
{
var input = document.createElement("input");
input.setAttribute("type", "hidden");
input.setAttribute(name, "name_you_want");
input.setAttribute(value, "value_you_want");
document.getElementById(formID).appendChild(input);
}

function GetCookie(cookie_name)
{
if (document.cookie.length>0)
{
cookie_start=document.cookie.indexOf(cookie_name + "=");
if (cookie_start!=-1)
{
cookie_start=cookie_start + cookie_name.length+1;
cookie_end=document.cookie.indexOf(";",cookie_start);
if (cookie_end==-1) cookie_end=document.cookie.length;
return unescape(document.cookie.substring(cookie_start,cookie_end));
}
}
return "";
}

function str_replace(search, replace, subject) {
return subject.split(search).join(replace);
}
</script>


<!-- DAFORMJSBEGIN -->

<script type="text/javascript">
/* <![CDATA[ */
function refreshCaptcha()
{
var now = new Date();
if (document.images) {
document.images.captchaimg.src = 'https://www.ekiwi-scripts.de/form/v4/formmail_v4.php?action=captcha&id=790041&now=' + now.getTime();
}
}
/* ]]> */
</script>


<script type="text/javascript">

function SetCookieValues()
{

}

function SetCookies()
{

}

</script>

<script type="text/javascript">
var $varCaptchaOK = -1;

function validateCaptcha($input) {
var xhttp = new XMLHttpRequest();

xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
if (this.responseText == "OK") {
$varCaptchaOK = 1;
}
if (this.responseText == "FAIL") {
$varCaptchaOK = 0;
}
} else if (this.readyState == 4 && this.status != 200)
{
$varCaptchaOK = 99;
}
};
xhttp.open("GET", "https://www.ekiwi-scripts.de/form/v4/captcha.php?input=" + $input + "&formid=790041", true);
xhttp.send();
}

function chkFormular()
{
if(document.DAFORM.Vorname.value.trim() == "") {
alert("Bitte einen Wert in das Feld Vorname eingeben!");
document.DAFORM.Vorname.focus();
return false;
}

if(document.DAFORM.Nachname.value.trim() == "") {
alert("Bitte einen Wert in das Feld Nachname eingeben!");
document.DAFORM.Nachname.focus();
return false;
}

if(!document.DAFORM.EMail.value.match(/^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,6}$/i)) {
alert("Bitte einen Wert in das Feld E-Mail eingeben!");
document.DAFORM.EMail.focus();
return false;
}

var $catpchaInput = document.DAFORM.captcha_input.value.trim();
if ($varCaptchaOK == 0 || $catpchaInput == "")
{
alert("Fehler: Captcha Eingabe nicht korrekt.");
return(false);
}
document.forms["DAFORM"].submit();
return(true);
}
</script>



</head>



<script>
function uebertragen() {
if (checked == 0) {checked=1;
//alert("los1"+String(document.DAFORM.Vorname.value))
//alert("los"+String(document.DAFORM.Nachname.value)+String(document.DAFORM.Vorname.value)+String(document.DAFORM.EMail.value)+String(document.DAFORM.Telefonnummermobil.value)+String(document.DAFORM.Telefonnummerprivat.value));
var today = new Date();
var y = today.getFullYear();
var mo = today.getMonth() + 1;
var d = today.getDate()
var h = today.getHours();
var m = today.getMinutes();
var s = today.getSeconds();

//window.scrollTo(0,0);
// html2canvas(document.getElementById("element-to-print")).then(function(canvas) {
// Export the canvas to its data URI representation
//var base64image = canvas.toDataURL("image/png",1);
//var base64image = canvas.toDataURL();

// Open the image in a new window
//alert("Mit einem Klick auf OK werden die Daten übertragen. Die Übertragung kann ein paar Sekunden dauern. Anschließend erhalten Sie eine weitere Meldung.");

$.ajax({
type: "POST",
url: "https://blau-weiss-schotten.de/formularkontaktdaten.php",
data: {
name: String(document.DAFORM.Nachname.value),
vorname: String(document.DAFORM.Vorname.value),
mail: String(document.DAFORM.EMail.value),
mobil: String(document.DAFORM.Telefonnummermobil.value),
festnetz: String(document.DAFORM.Telefonnummerprivat.value),
datum_heute: "_"+String(y)+"_"+String(mo)+"_"+String(d)+"__"+String(h)+"_"+String(m)+"_"+String(s)+"_"
}
}).done(function(o) {
console.log('saved');
alert("Daten erfolgreich übertragen." );
window.location.href = 'https://blau-weiss-schotten.de';
// If you want the file to be visible in the browser
// - please modify the callback in javascript. All you
// need is to return the url to the file, you just saved
// and than put the image in your browser.
});


// Open the image in a new window
// window.open(base64image , "_blank");
//});
//window.scrollTo(0, document.body.scrollHeight || document.documentElement.scrollHeight);
//alert("Daten erfolgreich übertragen.");
//window.location.href = 'https://blau-weiss-schotten.de';
} //endif checked
}

</script>


<body onLoad="SetCookieValues();">

<div class="w3-card-12 w3-white mainContainer">
<!-- FORMTITLE_BEGIN -->
<div class="w3-container w3-white">
<!-- <h1>Kontaktdatenformular</h1> -->
</div>
<!-- FORMTITLE_END -->
<!-- EINLEITUNGTEXT_BEGIN -->
<div class="w3-container">
<p class="textend">Mit diesem Formular können Sie uns Ihre aktuellen Kontaktdaten übermitteln. Wir möchten in Zukunft möglichst papierlos arbeiten und bitten darum, uns Ihre Mail-Adresse als Kontaktmöglichkeit mitzuteilen. </p>
</div>
<!-- EINLEITUNGTEXT_END -->

<form class="w3-container" action="javascript: uebertragen()" method="POST" name="DAFORM" onSubmit="SetCookies();return chkFormular();" enctype="multipart/form-data" target="_self">
<input type="hidden" name="formid" value="790041">
<input type="hidden" name="settings" value="Y2Vicmtxdntkcg==">
<input type="hidden" name="redirect" value="https://www.ekiwi.de/form/danke.htm">
<input type="hidden" name="subject" value="Kontaktdatenformular">
<input type="hidden" name="admin" value="fnR/V3pyfnlyZHJ+Y3I5Y3JkYw==">
<input type="hidden" name="admin1" value="">
<input type="hidden" name="admin2" value="">
<input type="hidden" name="typemail" value="html">
<input type="hidden" name="crypt" value="1">
<input type="hidden" name="conf_csv" value="0">
<input type="hidden" name="einleittext" value="">
<input type="hidden" name="copyfields" value="-1">
<input type="hidden" name="copyip" value="-1">
<input type="hidden" name="hide_empty_fields" value="0">
<input type="hidden" name="settings_encoding" value="utf-8">
<input type="hidden" name="conf_pdf" value="0">
<input type="hidden" name="conf_lang" value="de">
<input type="hidden" name="ReturnToSender" value="0">
<input type="hidden" name="label__Vorname" value="Vm9ybmFtZQ==">
<input type="hidden" name="label__Nachname" value="TmFjaG5hbWU=">
<input type="hidden" name="label__EMail" value="RS1NYWls">
<input type="hidden" name="label__Telefonnummermobil" value="VGVsZWZvbm51bW1lciBtb2JpbA==">
<input type="hidden" name="label__Telefonnummerprivat" value="VGVsZWZvbm51bW1lciBGZXN0bmV0eg==">


<p>
<label>Vorname*</label>
<input class="w3-input w3-white" type="text" name="Vorname" id="Vorname" value="" maxLength="100">
</p>

<p>
<label>Nachname*</label>
<input class="w3-input w3-white" type="text" name="Nachname" id="Nachname" value="" maxLength="100">
</p>

<p>
<label>E-Mail*</label>
<input class="w3-input w3-white" type="text" name="EMail" id="EMail" value="" maxLength="100">
</p>

<p>
<label>Telefonnummer mobil</label>
<input class="w3-input w3-white" type="text" name="Telefonnummermobil" id="Telefonnummermobil" placeholder="0567 8987654" maxLength="100">
</p>

<p>
<label>Telefonnummer Festnetz</label>
<input class="w3-input w3-white" type="text" name="Telefonnummerprivat" id="Telefonnummerprivat" placeholder="06044 1234" maxLength="100">
</p>


<p>
<label>Spam-Schutz</label>
</p>
<div class="w3-row">
<div class="w3-col l6">
<input type="text" name="captcha_input" class="w3-input w3-white" id="captcha_input" placeholder="" onkeyup="validateCaptcha(this.value)">
</div>
<div class="w3-col l6">
<div class="w3-padding-8">
&nbsp;
<img src="https://www.ekiwi-scripts.de/form/v4/formmail_v4.php?action=captcha&amp;id=790041" border="1" alt="captcha" name="captchaimg">
<a href="javascript:refreshCaptcha();"><img src="https://www.ekiwi-scripts.de/form/v4/refresh.png" border="0"></a>
</div>
</div>
</div>

<p class="textend"></p>
<hr/>

<label>Bitte beachten Sie unsere </label>
<a href="https://blau-weiss-schotten.de/index.php/datenschutz" target="_blank">Datenschutzerklärung.</a>
<p>
<button type="submit" class="w3-btn w3-blue-grey">Absenden</button>
<button type="reset" class="w3-btn w3-red">Zurücksetzen</button>
<!-- PRINTBUTTON -->
</p>
</form>

</div>



<script type="text/javascript">

refreshCaptcha();

</script>






</body>
</html>
{/source}