I want to let user sign up using unique username.
Firstly it will check if the username already exists or not.
I want it to look like,
users/@learner/
pass:123
NO EMAIL INVOLVED.
I want to let user sign up using unique username.
Firstly it will check if the username already exists or not.
I want it to look like,
users/@learner/
pass:123
NO EMAIL INVOLVED.
When submit is clicked
__ If does list contain [list of values in column name] [username_text_input] then
____ Show alert “That username is already in use. Please choose a different username.”
__ Else save username and password as create new row in Data Source
I don’t want a data source rather a unique userID without email.
Why don’t you want a data source? You have to store the username and password somewhere to verify their login info. If not, then you can’t enforce a unique username. And you also can’t check passwords to see if they are correct. You do not have to use email addresses for what I’m suggesting.
Can data source update, delete, add username and password?
like even when the app is going to be used by several users?
actually sir, I saw that firebase authentication is going to stop in Aug 2025,
but I want my app to work even after that.
This is not true. Google does have plans to deprecate a feature related to authentication later this year but authentication itself will still work for the foreseeable future.
The following three Firebase Authentication features are impacted by the shutdown of Firebase Dynamic Links on August 25, 2025: email link authentication for mobile apps, OAuth flows for Android apps using older versions of the Authentication SDK, and Cordova OAuth support for web apps. In order to use these features after the shutdown of Dynamic Links, migrate to use a newer SDK version and complete some additional steps.
For specific information and migration guidance, visit the Dynamic Links Deprecation FAQ.
Thank you, sir!
Yes.
Alright, I’ll check it out! Thank you, sir!