(defun submit-test-handler (httpcon) (elnode-http-start httpcon 200 '("Content-type" . "text/html")) (let ((foo (elnode-http-param httpcon "foo"))) (elnode-http-return httpcon (cond (foo (format "Value entered: %s" foo)) (t " Enter a value:
")))))