This website collects cookies to deliver better user experience
flask blog app
flask blog app
flask blog app
Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. However, Flask supports extensions that can add application features as if they were implemented in Flask itself.
Our last project to be done for the lux tech academy was making an application/system that has all the features a login authentication system should have, these features are:
Users can log in only if their credentials are present in the database.
Without logging in, the user cannot go to the next page, even using that particular page's routes.
When logged in, the user can go to other pages using routes.
After clicking on logout, the user cannot go to the next page again using routes.
If the email or username already exists in the database, the user will not create the account.