“So erstellen Sie ein Passwortsystem in HTML” Code-Antworten

So erstellen Sie ein Passwortsystem in HTML

<script type="text/javascript">
var password = "please";
var x = prompt("Enter in the password "," ");
if (x.toLowerCase() == password) {
 alert("Come right in \n \n You've entered in the right password");
 window.location = "good.htm";
}
else {
 window.location = "bad.htm";
}
</script>
Spotless Salamander

So erstellen Sie ein Passwortsystem in HTML

<script type="text/javascript">
var password = "please";
var x = prompt("Enter in the password "," ");
if (x.toLowerCase() == password) {
 alert("Come right in \n \n You've entered in the right password");
 window.location = "good.htm";
}
else {
 window.location = "bad.htm";
}
</script>
Arrogant Alpaca

Ähnliche Antworten wie “So erstellen Sie ein Passwortsystem in HTML”

Fragen ähnlich wie “So erstellen Sie ein Passwortsystem in HTML”

Weitere verwandte Antworten zu “So erstellen Sie ein Passwortsystem in HTML” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen