Simple chat.cgi

From XPUB & Lens-Based wiki

How am I being served

   python -m CGIHTTPServer


cgi-bin/chat.cgi

#!/usr/bin/python
import datetime
import cgitb; cgitb.enable()
import cgi

i = cgi.FieldStorage()
message = i.getvalue("message", "")

print "Content-type:text/html"
print
print "<h1>Hello</h1>"
print '''
<link rel="stylesheet" href="/birthday.css" >
<form action="">
<input type="text" name="message" autofocus><br>
<input type="submit">
</form>

'''

print "You said {0}".format(message.upper())