The Form Example in Developer Information (in Run Workspace) is quite basic. Every input in the sample HTML form is <input type="text">
It would prefer to see a form sample where the type of the inputs reflect the public parameter type, eg:
- Date/Time: <input type="datetime"> or <input type="date">
- Integer: <input type="number">
- Password: <input type="password">
- Color Picker: <input type="color">
- Choice/Choice with Alias/Multiple: <input type="radio">, <input type="checkbox"> or <select> <option value="volvo">Volvo</option>... </select>
In Choice/Choice with Alias it is also possible to expose all the options with both values and aliases from the Configuration of the Parameter
Now you need to do it manually even it is basically an automatic (and boring) task.