#!/bin/sh
echo "Content-Type: text/html\n"
echo "<title>Forms support test server</title><body>
This script executed at `date`, on receipt of the form you sent.
The form included the following arguments:<hr><dl>"
postit | while read NAME REST
do
	echo "<dt>${NAME}<dd>${REST}"
done
echo "</dl><hr>"
echo "</body>"
