diff options
Diffstat (limited to 'hyperkitty/views/forms.py')
-rw-r--r-- | hyperkitty/views/forms.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hyperkitty/views/forms.py b/hyperkitty/views/forms.py index c19ace4..8cd3abd 100644 --- a/hyperkitty/views/forms.py +++ b/hyperkitty/views/forms.py @@ -58,6 +58,12 @@ class RegistrationForm(forms.Form): +class UserProfileForm(forms.Form): + first_name = forms.CharField() + last_name = forms.CharField() + + + class TextInputWithButton(forms.TextInput): """ Render a text field and a button following the Twitter Bootstrap |