Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 678 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 678 Bytes

HTML Form processor

A flask app that prints submitted form-data. Helpful for beginners to understand how HTML forms submit data to backend.

Requirements

  1. Python >= 3.8
  2. VirtualEnvWrapper

See this blogpost to setup virtualenvwrapper.

How to run this app

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