14 lines
382 B
Python
14 lines
382 B
Python
from django import forms
|
|
|
|
|
|
class LoginForm(forms.Form):
|
|
username = forms.CharField(label="Username", max_length=64)
|
|
password = forms.CharField(label="Password", widget=forms.PasswordInput)
|
|
|
|
|
|
class TeamForm(forms.Form):
|
|
name = forms.CharField(label="Team's name", max_length=32)
|
|
|
|
|
|
class FlagForm(forms.Form):
|
|
name = forms.UUIDField(label="Identifier", max_length=32)
|