Use web form to run workflow

I have created a web context that I would like the user to use for entering selection criteria for the data to be printed.

How do I get it up and running in planet press and connect it to my workflow so that my workflow can receive the selection that user has entered.

Thanks

Create a process in Workflow that starts with a HTTP Input task. Let’s say you call the action “PrintSelection”.

In that process, add a Create Web Content task that calls your Web Template. Specify your Web Context and use record ID 0 to instruct the system to generate a Template without any data.

This will return the web form to the client browser. Users can then fill it, and the “Submit” button on that form should point to another Workflow process (say, “ProcessSelection”), that also starts with an HTTP Input task and that actually handles the data provided by the user.