def index(req):
req.content_type = 'text/html'
main = """<form method="POST">
<input type="text" name="test">
<input type="submit">"""
return main
(использую mod_python)
def index(req):
req.content_type = 'text/html'
main = """<form method="POST">
<input type="text" name="test">
<input type="submit">"""
return main