https://github.com/riad-azz/flask-auth-example
A simple Flask authentication example using Flask-Login.
https://github.com/riad-azz/flask-auth-example
flask flask-auth flask-bcrypt flask-blueprints flask-csrf flask-example flask-forms flask-login flask-sqlalchemy flask-tutorial
Last synced: 9 months ago
JSON representation
A simple Flask authentication example using Flask-Login.
- Host: GitHub
- URL: https://github.com/riad-azz/flask-auth-example
- Owner: riad-azz
- Created: 2023-08-11T01:28:57.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-11T01:29:20.000Z (over 2 years ago)
- Last Synced: 2024-12-30T10:52:07.522Z (12 months ago)
- Topics: flask, flask-auth, flask-bcrypt, flask-blueprints, flask-csrf, flask-example, flask-forms, flask-login, flask-sqlalchemy, flask-tutorial
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Authentication Example
This repository provides an example implementation of user authentication using Flask-Login, demonstrating
how to build a simple web application with user registration, login.
## Features
- User registration and login functionality.
- Password hashing for enhanced security.
- Flash messages for user feedback.
## Preview
- Logged in:

- Registration page:

- Login page:

## Getting Started
1.Clone the repository to your local machine:
```bash
git clone https://github.com/riad-azz/flask-auth-example && cd flask-auth-example
```
2.Install the required dependencies:
```bash
pip install -r requirements.txt
```
3.The application can be run with the following command:
```bash
python main.py
```
Open your web browser and navigate to http://localhost:5000 to access the application.