0.11.17 Google Auth

This commit is contained in:
SDE
2024-01-15 17:43:18 +03:00
parent c6d41513c0
commit 67eb32968e
2 changed files with 7 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ urlpatterns = [
path('login/', login_View, name='login_profile'),
path('logout/', logout_View, name='logout_profile'),
path('account/signup/', login_View, name="custom_singup" ),
# ajax ----------------
# url(r'^login$', user_login_View_ajax, name='user_login_View_ajax'),

View File

@@ -4,6 +4,7 @@ from django.urls import path, include
from django.conf.urls.static import static
from django.conf import settings
from GeneralApp.views import Page404
from AuthApp.views import login_View
handler404 = Page404
@@ -12,6 +13,8 @@ urlpatterns = [
path('ckeditor/', include('ckeditor_uploader.urls')),
path('i18n/', include('django.conf.urls.i18n')),
path('accounts/signup', login_View, name='signup'),
path('accounts/', include('allauth.urls')),
path('accounts/', include('allauth.socialaccount.urls')),
@@ -19,6 +22,8 @@ urlpatterns = [
path('user_account/', include('AuthApp.js_urls')),
path('routes/', include('RoutesApp.js_urls')),
path('subscribes/', include('SubscribesApp.js_urls')),