-
Notifications
You must be signed in to change notification settings - Fork 81
Open
Description
<title>Квест: введи пароль</title>
<style>
body { font-family: Arial, sans-serif; max-width: 400px; margin: 50px auto; text-align: center; }
input { font-size: 1.2em; padding: 8px; width: 80%; }
button { font-size: 1.1em; padding: 10px 20px; margin-top: 10px; }
#audio { margin-top: 20px; }
</style>
Проверить
Ваш браузер не поддерживает аудио.
<script>
function checkPassword() {
const input = document.getElementById("password").value;
if (input === "6145") {
document.getElementById("audio").style.display = "block";
} else {
alert("Неверный пароль!");
}
}
document.getElementById("password")
.addEventListener("keydown", e => { if (e.key === "Enter") checkPassword(); });
</script>
Введите пароль:
Проверить
Правильно! Слушайте сообщение:
Metadata
Metadata
Assignees
Labels
No labels