This repository has been archived on 2020-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
cgi-pw_manager/functions/headfoot.py

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>")