1
0
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:
Jason McBrayer
2018-04-23 18:16:22 -04:00
parent f6d91ca88b
commit 73e105517c
13 changed files with 276 additions and 0 deletions

9
brutaldon/forms.py Normal file
View 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())