serenity/Base/res/html/misc/noscript.html
2022-03-31 17:08:38 +02:00

16 lines
265 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>&lt;noscript&gt;</title>
</head>
<body>
<script>
alert("Scripting is enabled!");
</script>
<noscript>
Scripting is disabled!
</noscript>
</body>
</html>