I just started learning elm this week so excuse me if the question is super basic.
So, I want to send a keyword (which is part of my Model, as shown in the forms example at https://elm-lang.org/examples/forms) as a "form" from my elm frontend to my backend. My cURL HTTP request looks like this:
curl -X 'POST' --form 'keyword=key' 0.0.0.0:5000/search
How would I transform that into an HTTP request written in elm, specifically the --form part? I read the HTTP section in the elm guide, but it doesn't mention anything about this.