diff options
Diffstat (limited to 'fbconnect/forms.py')
-rwxr-xr-x | fbconnect/forms.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fbconnect/forms.py b/fbconnect/forms.py new file mode 100755 index 00000000..94f86816 --- /dev/null +++ b/fbconnect/forms.py @@ -0,0 +1,8 @@ +from django_authopenid.forms import NextUrlField, UserNameField, UserEmailField + +from django import forms + +class FBConnectRegisterForm(forms.Form): + next = NextUrlField() + username = UserNameField() + email = UserEmailField() |