The Form widget should allow us to control the Form Method

We have some use cases where the choice of get versus post for a form method is limited and not in our control. Can the form widget be updated to include an option for the method?

We tweaked the form widget recently for something similar (field ids). We could do it again sometime when we can fit it. In the mean time, I’d like to understand these use cases more. Are some apps built to only accept GET?

These days, GET is somewhat frowned upon as seemingly less secure (exposes the form data into the URL, allowing for XSS). The form tends to do POST all the time due to that.