mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
7 lines
178 B
Python
7 lines
178 B
Python
from django import forms
|
|
|
|
|
|
class LoginForm(forms.Form):
|
|
username = forms.CharField(max_length=16, required=True)
|
|
password = forms.CharField(widget=forms.PasswordInput())
|