CTF-Manager/apps/ctf/forms.py
2025-02-09 22:25:31 +01:00

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)