You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
I need a code for login using phone number and password without using form.py
and tell me how can I do quickly
Ryan Nowakowski
unread,
Apr 14, 2024, 2:15:57 PM4/14/24
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
First, I'm assuming you're not yet storing the users phone number so... Is this a brand new Django project? If so you can look into creating a custom user model [1] that has a unique phone number field [2]. If it's an already existing project, you can look into adding a profile [3] that contains a phone number field.
Next, most user input including login is handled using Django forms [4]. Any reason why you don't want to use it?