Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flask-extensions/flask-simplelogin
Simple Login - Login Extension for Flask - maintainer @cuducos
https://github.com/flask-extensions/flask-simplelogin
auth authentication flask flask-extension flask-extensions flask-login flask-plugins hacktoberfest login
Last synced: 23 days ago
JSON representation
Simple Login - Login Extension for Flask - maintainer @cuducos
- Host: GitHub
- URL: https://github.com/flask-extensions/flask-simplelogin
- Owner: flask-extensions
- License: mit
- Created: 2017-08-23T22:29:20.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-10T17:55:05.000Z (26 days ago)
- Last Synced: 2024-10-14T08:40:54.404Z (23 days ago)
- Topics: auth, authentication, flask, flask-extension, flask-extensions, flask-login, flask-plugins, hacktoberfest, login
- Language: Python
- Homepage:
- Size: 243 KB
- Stars: 200
- Watchers: 10
- Forks: 43
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/flask-extensions/Flask-SimpleLogin/tests.yaml?branch=main&style=flat-square)](https://github.com/flask-extensions/Flask-SimpleLogin/actions/workflows/tests.yml)
[![PyPI](https://img.shields.io/pypi/v/flask_simplelogin.svg?style=flat-square)](https://pypi.org/project/flask_simplelogin/)
[![PyPI versions](https://img.shields.io/pypi/pyversions/flask_simplelogin.svg?style=flat-square)](https://pypi.org/project/flask_simplelogin/)
[![PyPI formats](https://img.shields.io/pypi/format/flask_simplelogin.svg?style=flat-square)](https://pypi.org/project/flask_simplelogin/)
[![Flask](https://img.shields.io/badge/Flask-Extension-blue.svg?style=flat-square)](https://github.com/pallets/flask)
[![Documentation](https://img.shields.io/readthedocs/flask-simple-login?style=flat-square)](https://flask-simple-login.readthedocs.io/en/latest/?badge=latest)# Login Extension for Flask
The simplest way to add login to flask!
## How it works
First, install it from [PyPI](https://pypi.org/project/flask_simplelogin/):
```console
$ pip install flask_simplelogin
```Then, use it in your app:
```python
from flask import Flask
from flask_simplelogin import SimpleLoginapp = Flask(__name__)
SimpleLogin(app)
```## **That's it!**
Now you have `/login` and `/logout` routes in your application.
The username defaults to `admin` and the password defaults to `secret` — yeah that's not clever, check the [docs](https://flask-simple-login.readthedocs.io/en/latest/?badge=latest) to see how to configure it properly!
![Login Screen](./login_screen.png)
Check the [documentation](https://flask-simple-login.readthedocs.io/en/latest/?badge=latest) for more details!