mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
Note that this code still assumes one's email address (stripped of domain) is unique. (imported from commit e98f96601ad109811978fc00b1165e97d8f7b185)
8 lines
265 B
Python
8 lines
265 B
Python
from django import forms
|
|
|
|
class RegistrationForm(forms.Form):
|
|
full_name = forms.CharField(max_length=100)
|
|
short_name = forms.CharField(max_length=100)
|
|
email = forms.EmailField()
|
|
password = forms.CharField(widget=forms.PasswordInput, max_length=100)
|