“Jak zrobić system haseł w HTML” Kod odpowiedzi

Jak zrobić system haseł w 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

Jak zrobić system haseł w 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

Odpowiedzi podobne do “Jak zrobić system haseł w HTML”

Pytania podobne do “Jak zrobić system haseł w HTML”

Więcej pokrewnych odpowiedzi na “Jak zrobić system haseł w HTML” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu