Why use WTForms instead of just posting with HTML
I've been curious lately what the benefits of using WTForms to submit data to flask is? Plain HTML, JavaScript, or bootstrap form seem easier to style and easier to submit with. Plus you can leave out all the python code required to create a WTForms class. Can someone explain what an advantage would be? I could say CSRF protection is one of the greatest reasons, but there are a lot of reasons why one would use WTFroms over plain HTML forms. CSRF protection out of the box Form validation out the box WTForms come as classes, so all the good come's from an object form. basically, if your project