public_html/index.cgi.bak

18 lines
609 B
Plaintext
Raw Normal View History

2025-10-24 19:02:10 +00:00
#!/usr/bin/python
import random
words = ["World", "zoomer", "eater", "subwoofer", "yeeter", "zanger", "zooper", "zoonick", "zooshi", "auioshir"]
colors = ["black", "grey"]
print("Status: 200 OK")
print("Content-Type: text/html; charset=UTF-8")
print("Cache-Control: no-cache")
print("")
print(f"""
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<body style=\"background-color: {random.choice(colors)}\">
<i><u><center><h1 style=\"background-color: {random.choice(colors)}; color: green\"> Hello {random.choice(words)}!</h1></center></u></i>
</body>
</html>
""")