serenity/Base/res/html/misc/noscript.html

16 lines
265 B
HTML
Raw Normal View History

2022-03-30 23:29:35 +01:00
<!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>