13 lines
264 B
Python
Executable File
13 lines
264 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import cgi
|
|
import cgitb
|
|
cgitb.enable()
|
|
|
|
|
|
form = open("doggu.html", "r").read()
|
|
print("Content-type: text/html\n")
|
|
print(form)
|
|
|
|
print('<a href="posts-show.py">Zeig mir alle Posts!</a><br>')
|
|
print('<a href="tags-show.py">Zeig mir alle Tags!</a>') |