https://github.com/hackersandslackers/flask-wtform-tutorial
📝😎 Tutorial to implement forms in your Flask app.
https://github.com/hackersandslackers/flask-wtform-tutorial
flask flask-application flask-wtf form-validation python tutorial wtforms
Last synced: 8 days ago
JSON representation
📝😎 Tutorial to implement forms in your Flask app.
- Host: GitHub
- URL: https://github.com/hackersandslackers/flask-wtform-tutorial
- Owner: hackersandslackers
- License: mit
- Created: 2019-11-08T08:25:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T21:46:41.000Z (7 months ago)
- Last Synced: 2024-09-18T23:46:29.256Z (7 months ago)
- Topics: flask, flask-application, flask-wtf, form-validation, python, tutorial, wtforms
- Language: Jinja
- Homepage: https://hackersandslackers.com/flask-wtforms-forms/
- Size: 273 KB
- Stars: 138
- Watchers: 7
- Forks: 43
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- jimsghstars - hackersandslackers/flask-wtform-tutorial - 📝😎 Tutorial to implement forms in your Flask app. (Jinja)
README
# Flask-WTF Tutorial




[](https://github.com/hackersandslackers/flask-wtform-tutorial/issues)
[](https://github.com/hackersandslackers/flask-wtform-tutorial/stargazers)
[](https://github.com/hackersandslackers/flask-wtform-tutorial/network)
Handle user input in your Flask app by creating forms with the Flask-WTForm library.
* **Tutorial**: [https://hackersandslackers.com/flask-wtforms-forms/](https://hackersandslackers.com/flask-wtforms-forms/)
* **Demo**: [https://flaskwtf.hackersandslackers.app/](https://flaskwtf.hackersandslackers.app/)## Getting Started
Get set up locally:
### Installation
Get up and running with `make deploy`:
```shell
git clone https://github.com/hackersandslackers/flask-wtform-tutorial.git
cd flask-wtform-tutorial
make deploy
```### Environment Variables
Replace the values in **.env.example** with your values and rename this file to **.env**:
* `SECRET_KEY`: Randomly generated string of characters used to encrypt your app's data.
* `FLASK_DEBUG`: Whether to run Flask in "debug" mode (either `True` or `False`).*Remember never to commit secrets saved in .env files to Github.*
-----
**Hackers and Slackers** tutorials are free of charge. If you found this tutorial helpful, a [small donation](https://www.buymeacoffee.com/hackersslackers) would be greatly appreciated to keep us in business. All proceeds go towards coffee, and all coffee goes towards more content.