I've seen something similar on these links:
Multiple forms in a single page using flask and WTForms
django submit two different forms with one submit button
but a little bit diffirent (it's only a simple exercise), is there any simple way to do it ?
(I must not use them in the same form)
my template:
<form action="/example" autocomplete="on" method="post">
<input placeholder="Enter a string" name="search">
<input type="submit" value="send" name="btn">
</form>
<form action="/example" autocomplete="on" method="post">
<select name="metods">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
</form>