started tracking my website with git
This commit is contained in:
17
index.cgi.bak
Executable file
17
index.cgi.bak
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/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>
|
||||
""")
|
||||
Reference in New Issue
Block a user