Metadata-Version: 2.4
Name: flask_simplelogin
Version: 0.3.0
Summary: Flask Simple Login - Login Extension for Flask
Project-URL: Repository, https://github.com/flask-extensions/Flask-SimpleLogin
Author-email: Bruno Rocha <rochacbruno@users.noreply.github.com>
Maintainer-email: Eduardo Cuducos <cuducos@users.noreply.github.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <4,>=3.10
Requires-Dist: flask-wtf>1.1
Requires-Dist: flask>=1.0.0
Description-Content-Type: text/markdown

[![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 SimpleLogin

app = 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!
