// Handler: GET / // Display an HTML form for testing form submission ctx = context() res = ctx.response() html = """ Form Handler Demo

Form Handler Demo

Test form submission with automatic parsing via req.form

Contact Form

Subscription Form

""" res.html(html)