SimplCommerce
SimplCommerce copied to clipboard
User registration email/Phone number not validated
User can enter any invalid email address and register them-self. After registration we should send verification link to registered email address and after successfully verification only user get registered. Also make mobile number as optional registration to email and send OTP to mobile to verify mobile number and avoid spamming.
For me its highest priority issue.
Guys i tried to implement it, but i could not, as i am novice to asp.net core. Can anyone please take this on priority. This issue is blocking me to deploy.
I am looking for registration process as given below.
User will register using Email or Phone number.
- If user use email address to register (as username), then User will get email to validate, and after validation of email address user will get chance to fill other details.
- If user use Phone number to register (as username), then User will get OTP to validate, and after validation of Phone number user will get chance to fill other details. This is necessary rather must to avoid fake accounts. I am sharing below website to understand what exactly I want. https://www.flipkart.com/ Go to Login & Signup
**### > All I am novice to asp.net core, so it will take much time for me to implement it.
Can anyone expert take this on priority.**
Guys, What's stopping to implement this? It's highly important than any other issues.
You can explore more options with Identity Core documentations
https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity?view=aspnetcore-2.2&tabs=visual-studio
https://docs.microsoft.com/en-us/aspnet/core/security/authentication/2fa?view=aspnetcore-1.1&viewFallbackFrom=aspnetcore-2.2
@Maheshln3 @thiennn @alinooshabadi @afernandes Any plan to implement it??
I am sorry for multiple messages, I know everyone is busy with something other task. But guys I really surprised for this issue, since this is most essential feature to have in any application where users registration is required. Also this is pending for long
Hope we will see user registration module having option to register based on phone OTP and so... Sorry If I am too much followed.
The emailing is relatively simple. However, SMS is more of an issue since you can't just send this from .NET (unless you have a GSM modem which just about everyone doesn't). You would need a 3rd party API (e.g. Twilio) or you can try to use cell provider's SMS email addresses (e.g. Verizon has <phone_number>@vzw.com or something) but then users have to put in their cell carriers, and this isn't doesn't always work.
As far as the email, I have done implementations of this using cryptographically generated and secured tokens with an expiration lifetime (i.e. token is no good after an hour or something) but it will also require changes to the database to store the required information for validation.
If this is something that the devs would like implemented, let me know and I will go ahead and work on (I don't want to start on it if it is something that is already being developed though).
I am looking for registration process as given below.
User will register using Email or Phone number.
- If user use email address to register (as username), then User will get email to validate, and after validation of email address user will get chance to fill other details.
- If user use Phone number to register (as username), then User will get OTP to validate, and after validation of Phone number user will get chance to fill other details. This is necessary rather must to avoid fake accounts. I am sharing below website to understand what exactly I want. https://www.flipkart.com/ Go to Login & Signup
**### > All I am novice to asp.net core, so it will take much time for me to implement it.
Can anyone expert take this on priority.**
You solve this problem?