mirror of
https://gitlab.com/brutaldon/brutaldon
synced 2025-06-05 21:49:32 +02:00
Log in to an instance and display a home timeline.
Only supports single user, lots of display elements not supported yet. But it actually has something to show. Actually display a home timeline. Still only single user, doesn't correctly handle boosts, CWs, and probably a lot of other things.
This commit is contained in:
9
brutaldon/forms.py
Normal file
9
brutaldon/forms.py
Normal file
@ -0,0 +1,9 @@
|
||||
from django import forms
|
||||
|
||||
class LoginForm(forms.Form):
|
||||
instance = forms.CharField(label="Instance",
|
||||
max_length=256)
|
||||
username = forms.CharField(label="Username",
|
||||
max_length=256)
|
||||
password = forms.CharField(widget=forms.PasswordInput())
|
||||
|
Reference in New Issue
Block a user