Align html buttons in a row in Flask Forms
I have a flask form, <form action="/data1" method="GET"> <button type="submit">Feed1</button> </form> <form action="/data2" method="GET"> <button type="submit">Feed2</button> </form> Button is displayed as below, Expectation is to add the buttons in a same row. Tried below style, but its not helping, button…