mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08: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)
|