On Thursday, 22 September 2011 15:18:15 UTC+1, Kurtis wrote:
>
> Sorry, I guess I should've posted that as well :)
>
> import string
> class PasswordField(forms.CharField):
>
> # Setup the Field
> def __init__(self, *args, **kwargs):
> super(PasswordField, self).__init__(min_le
assword must include at
least \
one letter and at least one
number.')
On Thu, Sep 22, 2011 at 4:15 AM, Daniel Roseman wrote:
>
>
> On Wednesday, 21 September 2011 23:42:02 UTC+1, Kurtis wrote:
>
>> Hey,
>>
>> I've cr
On Wednesday, 21 September 2011 23:42:02 UTC+1, Kurtis wrote:
>
> Hey,
>
> I've created my own User Registration FormView. Everything seems to
> work great except the password is always saved as "!". I can change
> that with the "password changer"
I didn't realize the code would come out so unreadable. It's also
posted here: http://dpaste.com/618619/
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this
Hey,
I've created my own User Registration FormView. Everything seems to
work great except the password is always saved as "!". I can change
that with the "password changer" in the admin section of the site. I
am using an alternative authentication backend, so I'
t; > Make sure you have 'django.middleware.csrf.CsrfViewMiddleware', in the
> MIDDLEWARE_CLASSES tuple in the settings.py file.
> >
> > Cheers, Brett
> >
> > On 9 Sep 2011, at 16:47, nicolas HERSOG wrote:
> >
> >> Hi All !
> >>
> >> Do any of y
; On 9 Sep 2011, at 16:47, nicolas HERSOG wrote:
>
>> Hi All !
>>
>> Do any of you use this app
>> https://bitbucket.org/ubernostrum/django-registration/overview with the csrf
>> middleware ?
>>
>> Instead of re-write myself the registar, check via em
e this app
> https://bitbucket.org/ubernostrum/django-registration/overview with the csrf
> middleware ?
>
> Instead of re-write myself the registar, check via email, lost password,
> login and co i tried to use this app, but it don't work and i have this
> message :
&g
Hi All !
Do any of you use this app
https://bitbucket.org/ubernostrum/django-registration/overview with the csrf
middleware ?
Instead of re-write myself the registar, check via email, lost password,
login and co i tried to use this app, but it don't work and i have this
message :
Forbidden
Thanks for your reply. I will follow this tutorial.
Best Regards,
On Tue, Aug 16, 2011 at 4:36 PM, shacker wrote:
> See also:
>
> django-profiles: The Missing Manual
> http://birdhouse.org/blog/2009/06/27/django-profiles/
>
> (django-profiles and django-registration are close
See also:
django-profiles: The Missing Manual
http://birdhouse.org/blog/2009/06/27/django-profiles/
(django-profiles and django-registration are close cousins; I always
use them in combination with one another).
./s
--
You received this message because you are subscribed to the Google Groups
Perhaps the following blog post will be useful for you if you just want to
get something up and running:
http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/
The author even has a link where you can download some of the standard
templates.
Best,
William
On
To be honest, django registration is quite complex in some aspects for a
beginner, due to its modularity. Creating a custom backend for a third party
app isn't the easiest exercise for a newbie.
If anyone has examples on how to customize django registration, now would be
a great time to sha
nline documentation of
third-party apps won't be so cryptic.
Thomas
On Mon, Aug 15, 2011 at 8:38 PM, Andre Lopes wrote:
> Hi, another question from a beginner.
>
> I am getting some trouble to get Django-Registration working. The
> on-line
> documentation(http://readthedocs.org
Hi, another question from a beginner.
I am getting some trouble to get Django-Registration working. The
on-line
documentation(http://readthedocs.org/docs/django-registration/en/latest/)
is not for a beginner like me, there are many steps that I don't know
how to do them. For example the cre
I indstalled django-regstration per the Quick-Start guide:
easy_install -Z django-registration
manage.py syncdb
I added
'registration',
to
INSTALLED_APPS = ()
and
ACCOUNT_ACTIVATION_DAYS = 7
I added
(r'^accounts/', include('registration.backends.default.urls')),
I had the same thing...
all what you need is to add " {% csrf_token %}" in each template for Post
form
it will solve your issue
On Sat, Aug 6, 2011 at 7:42 AM, bob gailer wrote:
> I have stumbled around following various pieces of advice:
>
> added to views:
>from django.core.context_proce
I have stumbled around following various pieces of advice:
added to views:
from django.core.context_processors import csrf
modified views to end with:
form = ContactForm()
c = {}
c.update(csrf(request))
c['form'] = form
return render_to_response('contact_fo
I also think that should be a default simple template in the package.
On Fri, Aug 5, 2011 at 12:52 PM, Phang Mulianto wrote:
> well..like the error said..you need to put {% csrf_token %} inside your
> form.. do you read the tutorial? you should read it if you serious getting
> in django. . it he
well..like the error said..you need to put {% csrf_token %} inside your
form.. do you read the tutorial? you should read it if you serious getting
in django. . it helps you alot as it help me too..
On Aug 5, 2011 12:12 PM, "bob gailer" wrote:
>
>
> On Aug 4, 11:47 pm, Mario Gudelj wrote:
>> Hey B
On Aug 4, 11:47 pm, Mario Gudelj wrote:
> Hey Bob,
>
> You can download some basic templates for this
> pagehttp://devdoodles.wordpress.com/2009/02/16/user-authentication-with-d...
OK - did that - now what? I can get the login form displayed - when I
click get:
Forbidden (403)
CSRF verificat
Hey Bob,
You can download some basic templates for this page
http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/
Cheers,
On 5 August 2011 12:42, bob gailer wrote:
> I followed the installation & configuration of django-registration up
> to th
I followed the installation & configuration of django-registration up
to the start of the Required templates topic. After that I am very
lost. "In the default setup, you will need to create several templates
required by django-registration" I have little idea what to do or
Hey,
@Lior Sion : No I am not using anything other than the default . IN
the database the user is created and active ( am able to login
manually as the user ) .
@Urun : Will try that out .. thanks.
Thanks
On Jul 26, 12:53 pm, Uros Trebec wrote:
> I'm using django-registration and I so
I'm using django-registration and I solved the same problem by using
this:
http://djangosnippets.org/snippets/1960/
Works like a charm :)
Regards,
Uros
On Jul 26, 8:41 am, Lior Sion wrote:
> Are you using anything not defaulted, like django-registration? In the
> database -
Are you using anything not defaulted, like django-registration? In the
database - is the user created and the active flag is true?
On Jul 24, 2:16 pm, vaibhav agarwal wrote:
> Hi,
>
> I am using Django 1.3. I have started building my first site in django
> and it seems real fun . I a
Hi.
Yes I did set AUTHENTICATION_BACKENDS to
django.contrib.auth.backends.ModelBackend in settings.py . Also doesnt
Django by default set AUTHENTICATION_BACKENDS to the value even if I
dont set it in the settings.py folder? Inspite of this , the solution
hasnt worked :(.
Thanks
Vaibhav
On Jul 24
Hi Vaibhav,
Just checking - Did you set the AUTHENTICATION_BACKENDS to
django.contrib.auth.backends.ModelBackend in settings.py
Thanks,
KP
On Jul 24, 4:16 pm, vaibhav agarwal wrote:
> Hi,
>
> I am using Django 1.3. I have started building my first site in django
> and it seems real fun . I am
link
http://stackoverflow.com/questions/3222549/how-to-automatically-login-a-user-after-registration-in-django
but it does not work for me . When I tried this , the user is directed
to the home page but since that has the login_required function , it
asks the user to manually login which I dont want
, and click the "registration required" checkbox and go to the
flatpage url, I'm still able to access the page when logged out. I've
included django.contrib.auth and django.contrib.contenttypes as
installed apps, as well.
Can someone let me know what I'm missing here? Is t
btw, I was correct, it was the development settings causing the problem
On Wed, Jul 13, 2011 at 1:43 PM, Joshua Russo wrote:
> Correct
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://gr
Correct
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-users/-/K5yKllF_gPcJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe fro
*light bulb* I forgot about my development vs production settings. I was
only changing the TEMPLATE_DIRS in the main settings.py that represents my
production settings. I'm not in a place where I can test this but I'm almost
certain that's what the problem is.
--
You received this message beca
To be clear, when you say registration/login, you mean
templates/registration/login, correct?
Your 'registration' directory should be in a 'templates' dir.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To pos
Cool, thanks for the confirmation.
I do have my template directories explicitly listed in TEMPLATE_DIRS. I even
made sure that my app's templates came before the admin templates, but for
some reason it's not picking up my /registration/logged_out.html and the
others that show
On 07/13/2011 12:46 PM, Joshua Russo wrote:
That's fine, but I was under the impression that the templates could
be overridden just by creating the proper path in my template
directories. Is that not true?
It's true. Check the order of your TEMPLATE_DIRS in settings.py. If you
don't have t
That's fine, but I was under the impression that the templates could be
overridden just by creating the proper path in my template directories. Is
that not true?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the we
gt; *An:* django-users@googlegroups.com
> *Betreff:* Trouble overriding registration templates
>
> ** **
>
> I want to use my own logout template but it doesn't want to pick it up. The
> login template worked just fine, but for anything that's already in the
> adm
Am I wrong about how templates work?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-users/-/FVBKI9qS2PQJ.
To post to this group, send email to django-users@googleg
Sorry, auto correct strikes again. I was trying to reply quickly from my
phone. I meant auth, not author views.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-us
I do have a views that are basically just proxies for the author views, but I
was under the impression that if I just wanted to replace the registration
templates then all I needed was a registration directory in my templates
directory with the right file names. From there it should just take
@googlegroups.com
Betreff: Trouble overriding registration templates
I want to use my own logout template but it doesn't want to pick it up.
The login template worked just fine, but for anything that's already in
the admin's template/registration folder, it only wants to use those. I
t
I want to use my own logout template but it doesn't want to pick it up. The
login template worked just fine, but for anything that's already in the
admin's template/registration folder, it only wants to use those. I tried
putting my templates folder before the admin templates fol
It looks like you added an extra kwarg named profile_callback to a
function call to use in your overridden version, then passed *kwargs on
to the original version. Before you call the super() version you have to
pop off your kwarg because it is an invalid parameter for the original
version.
This is my stack trace .
Traceback:
File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/
base.py" in get_response
111. response = callback(request,
*callback_args, **callback_kwargs)
File "/usr/local/lib/python2.6/dist-packages/registrati
On 06/22/2011 11:41 AM, Satyajit Sarangi wrote:
Now I get a database error
relation "registration_userprofile" does not exist
LINE 1: ..."."id", "registration_userprofile"."user_id" FROM "registrat...
That looks like a migration/syncdb issue. Either you added a field to an
already-synced mod
Now I get a database error
relation "registration_userprofile" does not exist
LINE 1: ..."."id", "registration_userprofile"."user_id" FROM "registrat...
On Wed, Jun 22, 2011 at 8:58 PM, Shawn Milochik wrote:
> On 06/22/2011 11:25 AM, Satyajit Sarangi wrote:
>
>> Traceback:
>>
>> 60.
On 06/22/2011 11:25 AM, Satyajit Sarangi wrote:
Traceback:
60.
url(r'^profile/$',UserProfile,name='UserProfile'),
Exception Type: NameError at /accounts/profile/
Exception Value: name 'UserProfile' is not defined
It appears that you have a view named UserProfile in
.6/dist-packages/django/utils/importlib.py" in
import_module
35. __import__(name)
File "/usr/local/lib/python2.6/dist-packages/registration/urls.py" in
60.
url(r'^profile/$',UserProfile,name='UserProfile'),
Exception Type: NameError at /accounts/profile/
On 06/22/2011 11:21 AM, Satyajit Sarangi wrote:
These are my steps .
1. Not using django-profile
2. Create my own view to show the profile by using user.get_profile()
3. Created my own view and also a model in django-registration to view
the profile .
4 . Did changes to
urls.py url(r'^pr
These are my steps .
1. Not using django-profile
2. Create my own view to show the profile by using user.get_profile()
3. Created my own view and also a model in django-registration to view the
profile .
4 . Did changes to
urls.py url(r'^profile/$',register.UserProfile,name='u
On 06/22/11 16:09, Satyajit Sarangi wrote:
I am using django registration , which is not displaying any profile
when I log in . Thus I am not able to login . What should I do to
overcome this ?
I assume you've been reading docs already. (django-registration and
django user management
I am using django registration , which is not displaying any profile
when I log in . Thus I am not able to login . What should I do to
overcome this ?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email
tion>
<https://bitbucket.org/__ubernostrum/django-__registration
<https://bitbucket.org/ubernostrum/django-registration>> This is
what I
am using for user registration . Once , I log in the
user is not
able
t;> This is my urls.py
>>> http://dpaste.com/556955/
>>>
>>> On Tue, Jun 21, 2011 at 7:14 PM, Piotr Zalewa >> <mailto:zal...@gmail.com>> wrote:
>>>
>>> On 06/21/11 14:15, Satyajit Sarangi wrote:
>>>
>>>
>&g
gt; This is my urls.py
>> http://dpaste.com/556955/
>>
>> On Tue, Jun 21, 2011 at 7:14 PM, Piotr Zalewa > <mailto:zal...@gmail.com>> wrote:
>>
>>On 06/21/11 14:15, Satyajit Sarangi wrote:
>>
>>
>> https://bitbucket.org/__**ubernostrum/
jango-__registration
<https://bitbucket.org/ubernostrum/django-registration> This is
what I
am using for user registration . Once , I log in the user is not
able
to get into the userprofile page .
Thus I installed this
https://bitbucket.org/__ub
I am using 1.3
This is my settings.py
http://dpaste.com/556954/
This is my urls.py
http://dpaste.com/556955/
On Tue, Jun 21, 2011 at 7:14 PM, Piotr Zalewa wrote:
> On 06/21/11 14:15, Satyajit Sarangi wrote:
>
>> https://bitbucket.org/**ubernostrum/django-**registration<https:
On 06/21/11 14:15, Satyajit Sarangi wrote:
https://bitbucket.org/ubernostrum/django-registration This is what I
am using for user registration . Once , I log in the user is not able
to get into the userprofile page .
Thus I installed this https://bitbucket.org/ubernostrum/django-profiles/
for
https://bitbucket.org/ubernostrum/django-registration This is what I
am using for user registration . Once , I log in the user is not able
to get into the userprofile page .
Thus I installed this https://bitbucket.org/ubernostrum/django-profiles/
for user profile .
Now , this produces a conflict
Oh silly me. I was not returning user in the HttpResponse. I don't why
I assumed that it would be automatically available.
Thanks all.
2011/6/20 没必要吧 :
> Do you remember return user in HttpResponse?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django user
w to integrate session management with
>> django-registration. Google did not help me that much.
>
> do you have this line in settings.py:
> TEMPLATE_CONTEXT_PROCESSORS = (
> 'django.core.context_processors.request',
> --
> regards
> KG
> htt
On Mon, Jun 20, 2011 at 10:15 PM, Kevin Miller wrote:
> Hi all,
>
> I am in the process of finishing up an app. However, I just cannot
> integrate django-registration and sessions properly. I can allow a
> user to register and also log in. But
> I am a bit confused in getti
Do you remember return user in HttpResponse?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups
On Mon, 2011-06-20 at 16:15 -0500, Kevin Miller wrote:
> Can anyone please tell me how to integrate session management with
> django-registration. Google did not help me that much.
do you have this line in settings.py:
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_process
Hi all,
I am in the process of finishing up an app. However, I just cannot
integrate django-registration and sessions properly. I can allow a
user to register and also log in. But
I am a bit confused in getting in to work with sessions. Eg. I want to
get information based on the user that is
thank you...
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-users/-/T4B46pv50HwJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscrib
> i want to create superuser(administrator) on registration
User.objects.create_superuser is your friend.
> user=User.objects.create_user(
> username=form.cleaned_data['username'],
> password=form.cleaned_data['password1
hi friends,
i developed an application in django-nonrel with appengine.
i'm using django forms for user registration.
forms.py
class RegistrationForm(forms.Form):
username=forms.CharField(label=u'Username',max_length=30)
email=forms.CharField(label=u'
Hello Ram,
James Bennett would be the final authority on that question. Perhaps
because it's not actually been released as 0.8? It appears to be in alpha
stage.
Toodle-l...
creecode
--
You received this message because you are subscribed to the Google Groups
"Django users"
Hey,
Does anyone know what's up with django-registration 0.8 not being on PyPI?
Ram.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from t
- Original Message -
> From: "benp"
> To: "Django users"
> Sent: Monday, April 25, 2011 8:54:15 AM
> Subject: Django 1.2 Dropped Sessions when single view contains registration
> and login authentication
> I've seen other Django developers h
Hi,
This issue has been raised on Stack Overflow many times without any
resolution. The gist is that all of the views in my site are
protected by the @login_required decorator except for a splash page
and a registration page (which is only accessible by going through
the splash page and passing
algeria)
> ..etc
>
> So I muste add field country in 'add django user' ==> if montreal user
> modify the modules, the modification take effect in montreal banner.
>
> How Can I add the field in back office registration ??
>
> Thank and sorry for my
d the field in back office registration ??
Thank and sorry for my english ^^
--
Issolah mohamed
--
You received this message because you are subscribed to the Google Groups "Django
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe f
i have tried a lot things, but nothing works... only when i delete
that field, so that is the problem, but i dont know why!?!? :S
On 6 abr, 22:29, Antonio Sánchez wrote:
> Hi, im having problems extending django-registration register form. i
> have extended auth.User -> UserProfile,
Hi, im having problems extending django-registration register form. i
have extended auth.User -> UserProfile, and added some attributes, one
of this is country, that is a ForeignKey to Country Table (Django-
Countries, with all countries).
After configuring django-registration, i extend regis
-openid-yahoo-google/
On Thu, Mar 17, 2011 at 11:18 AM, Nge Nge wrote:
>
> Hi All!
> I want to create Django web project. I have to connect from my Django
> project to Facebook via login and registration when user login or
> register on my web site.
> Please guide what need for
It's easy to create an authentication backend:
http://docs.djangoproject.com/en/1.2/topics/auth/#writing-an-authentication-backend
If you know (or can figure out) what code you have to write in order
to authenticate against Facebook, just drop that code into your custom
authentication backend and
Hi All!
I want to create Django web project. I have to connect from my Django
project to Facebook via login and registration when user login or
register on my web site.
Please guide what need for me because I am a beginner on Django and
Python.
Although I read via online about Django connect
I really like django-userena better than django-registration; thanks
for the link
-Bedros
On Mar 13, 3:52 pm, Sergio Berlotto Jr
wrote:
> Well, I'll try thehttp://django-userena.orgbecouse django-registration is
> stoped development since March/2010.
--
You received this message
Did not work.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com.
For more options, visit t
I´ll try it..
In my template I wrote the URL manually ! Oh god.. heheh
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to
django-use
Sounds to me like you have done the wrong thing in your templates.
My registration email template contains this line:
http://{{ site }}{% url registration_activate
activation_key=activation_key %}
which should provide the correct information.
If you already have that and it still does not work
Well, I'll try the http://django-userena.org becouse django-registration is
stoped development since March/2010.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
The variable "activation_key" is blank, with no value, and the result os
activation redirect always to activation_failed view.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
T
What is the error message you receive?
On Mar 13, 5:27 pm, Sergio Berlotto Jr
wrote:
> I'm using django-registration.
> The activation email is generated correctly, but when i'm trying to activate
> the new user with generated key sent by e-mail, in
> urlhttp://server
I'm using django-registration.
The activation email is generated correctly, but when i'm trying to activate
the new user with generated key sent by e-mail, in url
http://server.com/accounts/activate/ee3ad866abca8bf0d29d71870a79a3b84cd9c965/
this only returns failure, and not ac
Hey,
#PgEast has its schedule up.
Register: https://www.postgresqlconference.org/register
Schedule: https://www.postgresqlconference.org/
There is a Django training available on the 22nd.
Sincerely,
Joshua D. Drake
--
PostgreSQL.org Major Contributor
Command Prompt, Inc: http://www.commandpr
On 3 Mar, 14:23, bruno desthuilliers
wrote:
> On 3 mar, 13:39, Kenneth Gonsalves wrote:
>
> > On Thu, 2011-03-03 at 00:36 -0800, pols wrote:
> > > Anyone knows how to override djangos default registration email.I
> > > need to alter it to sent as html email i
For Twitter, https://github.com/joshthecoder/tweepy does the trick for me.
On Thu, Mar 3, 2011 at 9:51 PM, guyf wrote:
>
>
> On Mar 2, 4:28 pm, Rodrigo Cea wrote:
>> I am developing a site that I want to link with Facebook and Twitter.
>>
>> So as to not reinvent the wheel, I'm looking for apps
On Mar 2, 4:28 pm, Rodrigo Cea wrote:
> I am developing a site that I want to link with Facebook and Twitter.
>
> So as to not reinvent the wheel, I'm looking for apps or snippets that can
> help with this, specifically:
>
> 1) allow users to register and login with their Facebook and/or Twitter
hai i need to send my activation_email.html template instead of
activattion_email.txt.By default django sends only text emails as the
activation mail.But i need to send this as html.so i need to override
that email sending function.but i dont know how?
--
You received this message because you a
On 3 mar, 13:39, Kenneth Gonsalves wrote:
> On Thu, 2011-03-03 at 00:36 -0800, pols wrote:
> > Anyone knows how to override djangos default registration email.I
> > need to alter it to sent as html email instead of text email.As i am a
> > bigner of django help me with
On Mar 3, 1:36 pm, pols wrote:
> hai
> Anyone knows how to override djangos default registration
> email(activation email).I
> need to alter it to sent as HTML email instead of TEXT email.ie i need to
> send my activation_email.html template intead of d
On Thu, 2011-03-03 at 00:36 -0800, pols wrote:
> Anyone knows how to override djangos default registration email.I
> need to alter it to sent as html email instead of text email.As i am a
> bigner of django help me with complete information
>
>
copy the templates to a folder call
hai
Anyone knows how to override djangos default registration email.I
need to alter it to sent as html email instead of text email.As i am a
bigner of django help me with complete information
--
You received this message because you are subscribed to the Google Groups
"Django users&q
On 2 Mar, 18:30, Jason Culverhouse wrote:
> On Mar 2, 2011, at 8:28 AM, Rodrigo Cea wrote:
>
> > I am developing a site that I want to link with Facebook and Twitter.
>
> https://github.com/flashingpumpkin/django-socialregistration(note the forks)
>
Personally I like django-socialregistration,
re this is the best code base to start from.
I'm also exploring the following:
• https://github.com/pennersr/django-allauth
• https://github.com/flashingpumpkin/django-socialregistration (note
the forks)
• https://github.com/kmike/django-registration-facebook-
I am developing a site that I want to link with Facebook and Twitter.
So as to not reinvent the wheel, I'm looking for apps or snippets that can
help with this, specifically:
1) allow users to register and login with their Facebook and/or Twitter
accounts.
2) Have these accounts be linked to
401 - 500 of 941 matches
Mail list logo