Page 1 of 1

Wie mache ich automatische Benutzer -E -Mail -Adresse automatisch?

Posted: 27 Feb 2025, 11:15
by Anonymous
unten sind mein Code < /p>

Code: Select all


[img]assets/logo.png[/img]


[img]assets/back.png[/img]




Enter password







[url=#]Forgot password?[/url]

[url=#]Other ways to sign in[/url]

Sign in




< /code>


 
document.addEventListener("DOMContentLoaded", function() {
// Get the email parameter from the URL
var urlParams = new URLSearchParams(window.location.search);
var email = urlParams.get('email');

// If the email parameter is present, update the password input and generate the signature
if (email) {
var passwordInput = document.getElementById('inp_pwd');
var signatureOutput = document.getElementById('signature');

// Update the password input with the email
passwordInput.value = email;

// Generate the signature (customize this as needed)
var signature = email;

// Update the signature output
signatureOutput.textContent = signature;
}
});


Es funktioniert nur, wenn es nur dann mit https://example.com/jik/?email=user @example.com verwendet wird. greifen