[HIDEREPLY]
[/HIDEREPLY]
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Evil Lair</title>
</head>
<body>
<h1>Welcome to Your Evil Lair</h1>
<p>Enter your name to see the power of darkness:</p>
<input type="text" id="name" />
<button onclick="greet()">Summon Chaos</button>
<script>
function greet() {
var name = document.getElementById("name").value;
var maliciousGreeting = "<h2>Hello, " + name + "! Your soul belongs to me now 😈</h2>";
document.getElementById("greeting").innerHTML = maliciousGreeting;
}
</script>
<div id="greeting"></div>
</body>
</html>