Questions tagged [django-allauth]

django-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication

django-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication

1673 questions
0
votes
1 answer

Django Allauth modify emails url from 127.0.0.0 to server domain name

Django Allauth modify emails url from 127.0.0.0 to server domain name There is Nginx running on a Ubuntu server. The Django contrib Sites has domain. The emails sent by Django allauth are: Account activate …
Bob
  • 3
  • 2
0
votes
1 answer

Django-allauth social/facebook authentication setup error

I am using facebook social authentication from django-allauth. However, the latest installation of django-allauth(0.32.0) gives me an error message-"TypeError: descriptor 'get' requires a 'dict' object but received a 'str'". The specific location of…
Kaleab Woldemariam
  • 2,567
  • 4
  • 22
  • 43
0
votes
1 answer

Django allauth Redirect on Password Change Success

This question has been brought up before here: https://github.com/pennersr/django-allauth/issues/468 It's closed and is a few years old, which could explain why its not working for me. I am simply trying to redirect to a different page other than…
Tyler Bell
  • 837
  • 10
  • 30
0
votes
0 answers

Occasion 503 error from google login callback, Django

Somehow I receive 503 error report related to Google Social Login. Does it mean Google occasionally broke down? I have a hard time to reproduce it on either development server or production server. Internal Server Error:…
Andy
  • 1,231
  • 1
  • 15
  • 27
0
votes
2 answers

Django Reoder norecaptcha field on allauth signup using crispy forms

I was able to get the noRecaptcha form on my Django-allauth signup form, with the template using crispy forms. Using this answer The question is really about forcing a field order on the crispy form layout, when the form is contained in…
wedward
  • 363
  • 2
  • 11
0
votes
2 answers

How would I direct all traffic that hasn't logged in to django allauth login

Want to direct all un-logged in traffic to the login page. How would I go about doing this? I don't want visitors to be able to see the site at all if they are not logged in. As well, the allauth signup page should not be able to be accessed either.…
0
votes
0 answers

Manage an email address with django / python / pythonanywhere

I'm looking to host my django app and am currently hosting free on pythonanywhere.com. The django app uses all-auth which requires SMTP emailing. I'm porting hosting to my own domain name, and with that want to start using an email @mywebsite.com.…
Brian
  • 101
  • 1
  • 2
0
votes
0 answers

delete email address from invitation if user has signed up

There is a situation that when a user has requested for invitation, he/she will then get to signup the account. When request is accepted by admin then they can signup which i have done. But i have no idea on how to delete the email address from the…
pythonBeginner
  • 781
  • 2
  • 12
  • 27
0
votes
1 answer

django-allauth: submitting form after social login

The current flow for visitors with django-allauth is if the visitor fills in a form, if they are not already authenticated they are shown a login modal with option of facebook login or standard signup form, with the original form data being saved in…
KingFu
  • 1,358
  • 5
  • 22
  • 42
0
votes
1 answer

django.core.exceptions.ImproperlyConfigured: Error importing form class pages.custom_sign_up_form: "cannot import name 'BaseSignupForm'"

I am trying to extend SignupForm of django allauth for customizing my signup form. The need is because i want to check if submitted email is accepted for signup or not and it is done by checking if the invite from that email is accepted or not by…
pythonBeginner
  • 781
  • 2
  • 12
  • 27
0
votes
1 answer

invitation not accepted user are also registered

The feature in my app is a user should first request for invitation and if his invitation is accepted by admin(from admin), a message should be sent that you can signup. Flow of the feature User submits the form with his/her email address and mail…
pythonBeginner
  • 781
  • 2
  • 12
  • 27
0
votes
1 answer

E-mail address verify status

I wanna check user's e-mail verify status for displaying a warning message. If e-mail address is not verified, i will show a message top of the page. Is there any template tag for checking user's e-mail address is confirmed?
0
votes
2 answers

Django, django-allauth and the battlenet provider

First time attempting to use oauth with python django and django-allauth. I can't seem to make logins happen. I can get to the point where you are asked to authorize your site with battlenet, but when you're redirected to the callback url I just get…
Jason
  • 72
  • 7
0
votes
1 answer

Django allauth template integration trouble

I'm new to coding, Python and Django, but trying to handle that :) Decided to learn while trying to make a real project. Almost every trouble I get is solvable with the help of Google, but now I'm stucked at one point, and cannot find any…
Pasha
  • 1
0
votes
2 answers

django-allauth password in email confirmation

I need send the password in the email confirmation after user signs up. How can I include the raw password in the context? Is it secure to pass password this way?
Aleksandr Zakharov
  • 334
  • 1
  • 4
  • 16