brutaldon-interfaccia-web-m.../brutaldon/forms.py

10 lines
306 B
Python

from django import forms
class LoginForm(forms.Form):
instance = forms.CharField(label="Instance",
max_length=256)
username = forms.CharField(label="Email",
max_length=256)
password = forms.CharField(widget=forms.PasswordInput())