blob: 94f86816dc3e8a08f4164c73d8a67f91e4862bf5 (
plain)
1
2
3
4
5
6
7
8
|
from django_authopenid.forms import NextUrlField, UserNameField, UserEmailField
from django import forms
class FBConnectRegisterForm(forms.Form):
next = NextUrlField()
username = UserNameField()
email = UserEmailField()
|