mirror of
https://github.com/jfmcbrayer/brutaldon
synced 2024-12-23 21:51:43 +01:00
10 lines
309 B
Python
10 lines
309 B
Python
|
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())
|
||
|
|