An open API service indexing awesome lists of open source software.

https://github.com/eniompw/formsinflask

How to build simple forms using Flask
https://github.com/eniompw/formsinflask

flask python3 pythonanywhere

Last synced: 3 months ago
JSON representation

How to build simple forms using Flask

Awesome Lists containing this project

README

          

# Forms In Flask

* [Render HTML](https://github.com/eniompw/FormsInFlask/blob/main/render_html.py) - [Simplest Form](https://github.com/eniompw/FormsInFlask/blob/main/templates/simplest_form.html)
* [GET form data](https://github.com/eniompw/FormsInFlask/blob/main/get_args.py) - [Simple Form](https://github.com/eniompw/FormsInFlask/blob/main/templates/simple_form.html)
* [POST form data](https://github.com/eniompw/FormsInFlask/blob/main/post_form.py) - [SignUp POST form](https://github.com/eniompw/FormsInFlask/blob/main/templates/index.html)

## Reference
* [Flask request object](https://flask.palletsprojects.com/en/1.1.x/quickstart/#the-request-object)