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