Password-based login for Plain.
Project description
plain.password
Password authentication for Plain.
Usage
To enable password authentication in your Plain application, add the PasswordLoginView to your urls.py:
# app/urls.py
from plain.urls import path
from plain.passwords.views import PasswordLoginView
urlpatterns = [
path('login/', PasswordLoginView, name='login'),
# ...
]
This sets up a basic login view where users can authenticate using their username and password.
For password resets to work, you also need to install plain.email.
FAQs
How do I customize the login form?
To customize the login form, you can subclass PasswordLoginForm and override its fields or methods as needed. Then, set the form_class attribute in your PasswordLoginView to use your custom form.
# app/forms.py
from plain.passwords.forms import PasswordLoginForm
class MyCustomLoginForm(PasswordLoginForm):
# Add custom fields or override methods here
pass
# app/views.py
from plain.passwords.views import PasswordLoginView
from .forms import MyCustomLoginForm
class MyPasswordLoginView(PasswordLoginView):
form_class = MyCustomLoginForm
Update your urls.py to use your custom view:
# app/urls.py
from plain.urls import path
from .views import MyPasswordLoginView
urlpatterns = [
path('login/', MyPasswordLoginView, name='login'),
# ...
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file plain_passwords-0.8.1.tar.gz.
File metadata
- Download URL: plain_passwords-0.8.1.tar.gz
- Upload date:
- Size: 95.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
824cf4519305582e9644e947ceb8532f8461745428ff04682c18007d34d21dca
|
|
| MD5 |
6e48fabae997fc5a0cd48375ffe9cb1d
|
|
| BLAKE2b-256 |
a105315194ef5b467ce50dd1d995e01ab7ccf8ec970fe066e8fe2f7d1dd2d710
|
File details
Details for the file plain_passwords-0.8.1-py3-none-any.whl.
File metadata
- Download URL: plain_passwords-0.8.1-py3-none-any.whl
- Upload date:
- Size: 98.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddecdfdae05bd4d9563fd1620e8b02b6867bca68b9f62a371d832789e02805e1
|
|
| MD5 |
c4b36906f65f50ae921c2deabf81d538
|
|
| BLAKE2b-256 |
93ad9f62224a06bcbc69c3b5b075ce2134024cc7bba04655bd67e2cef7b425c8
|