1. Import

This commit is contained in:
2026-03-29 10:34:57 +02:00
parent b0e00c1259
commit a1129565af
4899 changed files with 3007593 additions and 0 deletions

16
html/include/swift.js Normal file
View File

@@ -0,0 +1,16 @@
// SWIFT
function swiftValidate() {
var regSWIFT = /^([a-zA-Z]){4}([a-zA-Z]){2}([0-9a-zA-Z]){2}([0-9a-zA-Z]{3})?$/;
var form = document.forms[0];
var swiftValue = form.f_cmp_swift.value;
if (swiftValue != '') {
if (regSWIFT.test(swiftValue) == false) {
alert("Der SWIFT-Code " + form.f_cmp_swift.value + " ist nicht korrekt!");
form.f_cmp_swift.value = "";
form.f_cmp_swift.focus();
}
}
}