A flask app that prints submitted form-data. Helpful for beginners to understand how HTML forms submit data to backend.
- Python >= 3.8
- VirtualEnvWrapper
See this blogpost to setup virtualenvwrapper.
Follow the instructions below,
cd ~/Dev
git clone git@github.com:Webinative/html-form-processor.git
cd html-form-processor
# create a new virtual environment
mkvirtualenv flask_app
pip3 install Flask
# TODO: Edit flask_app/templates/form.html to place your form.
# run the flask app
flask --app flask_app --debug run