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
- Host: GitHub
- URL: https://github.com/eniompw/formsinflask
- Owner: eniompw
- Created: 2021-05-07T10:15:48.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-11T22:38:47.000Z (over 2 years ago)
- Last Synced: 2025-06-12T15:53:41.802Z (7 months ago)
- Topics: flask, python3, pythonanywhere
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)