Looking for a help Authentication of Django and Angular
I am Beginner to python Django . Here I need to communicate with frontend guys who is using angular 12. I wrote a code for signup page and i want see the output through angular but how can I see the output?
Hello!
First Of All You Should Set Name Of Every Inputs.
<input name="email">
btw Dont Forget That There Should Be A Submit Button.
<input type="submit">
And Now Lets Go To BackEnd On Your Page in views.py. First You Should get the time that button gets submited. And You Will Be Able To Get Every Inputs Data With Name Of Them.
if request.GET:
print(request.GET.get('email') # name of the input
Soo Your Answer Is This. I Hope It Was Helpful