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

JQuery-Programmierung
Anonymous
 Wie mache ich automatische Benutzer -E -Mail -Adresse automatisch?

Post 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

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post