Simple Flask blog application with registration and login forms.
- Home page with blog posts
- About page
- Registration form with username, email, password, and confirm password
- Login form with email, password, and remember-me field
- Flash messages for success and error feedback
blog_app.py- Flask application routes and app configurationforms.py- WTForms definitions for registration and logintemplates/- HTML templates using Jinja2static/main.css- styling for the app
- Python 3
- Flask
- Flask-WTF
- Install dependencies:
pip install flask flask-wtf
- Run the app:
python blog_app.py
- Open
http://127.0.0.1:5000/