function validate() { let username = document.getElementById('username').value; let password = document.getElementById('password').value; console.log("Username:", username); console.log("Password:", password); if (username === 'AB' && password === 'ABCARE4U') { window.location.href = "https://www.soulfood.gr/login/ab-soulfood"; } else if (username === 'kotsovolos' && password === 'kotsovolos123!@#'){ window.location.href = "https://www.soulfood.gr/login/kotsovolos-soulfood"; } else if (username === 'ERGO' && password === 'ERGOCARE4U'){ window.location.href = "https://www.soulfood.gr/login/ergo-soulfood"; } else if (username === 'LATSCO' && password === 'LATSCOWELLNESS4U'){ window.location.href = "https://www.soulfood.gr/login/latsco-soulfood"; } else if (username === 'softonegroup' && password === 'SUP1234!'){ window.location.href = "https://www.soulfood.gr/login/softone-soulfood"; } else if (username === 'PRAKTIKER' && password === 'BEWELL!'){ window.location.href = "https://www.soulfood.gr/login/praktiker-soulfood"; } else if (username === 'krikri' && password === 'mazistinkrikri'){ window.location.href = "https://www.soulfood.gr/login/krikri-soulfood"; } else { alert('Τα στοιχεία σύνδεσης που εισάγατε δεν είναι σωστά. Παρακαλούμε προσπαθήστε ξανά.'); } }