17 lines
269 B
Python
Executable File
17 lines
269 B
Python
Executable File
#!/usr/bin/python3.5
|
|
|
|
# DEBUG
|
|
import cgitb
|
|
cgitb.enable()
|
|
|
|
def printheader():
|
|
print("Content-Type: text/html\n")
|
|
|
|
print ("""
|
|
<html>
|
|
<title> Ma Jolie petite Page</title>
|
|
""")
|
|
|
|
def printfooter():
|
|
print("</html>")
|