ajax registration def
This commit is contained in:
SDE
2023-06-21 17:08:40 +03:00
parent 2e4d72156c
commit 914f3f958c
5 changed files with 47 additions and 7 deletions

10
AuthApp/js_urls.py Normal file
View File

@@ -0,0 +1,10 @@
# coding=utf-8
from django.urls import path
# from AuthApp.js_views import *
# from AuthApp.import_funcs import *
from AuthApp.js_views import *
from django.contrib.auth import views
urlpatterns = [
path('registration/', registration_ajax, name='registration_ajax'),
]