mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
6 lines
184 B
Python
6 lines
184 B
Python
from django import forms
|
|
|
|
class RegistrationForm(forms.Form):
|
|
username = forms.CharField(max_length=100)
|
|
password = forms.CharField(widget=forms.PasswordInput, max_length=100)
|