Login/Registration before accessing the application.
-
I have this android app already created in QT. Now I need to build a login/register before entering the app.
How this should work is; any user needs to login before using the app. If they have not registered yet, if you click on register it will take you to the company website to register. When registered, same credentials should be able to make them log into the app when they come back to the app.Login-> check browser server-> opens the app.
If not a verified user, asks to register.
Redirect to the company website-> registration->redirects again to the app-> login (verifies if the user is registered)-> opens the app.Please senior developers, help me with how this can be achieved. I haven’t created any profile registration before in QT or browser ever. Guide me please, I also seem to not find any only resource to attain this.
Thankyou so much!!! -
It is not so hard to do and there are a lot of ways to do. I suggest you to not open the company website.
You should create a Qt form will the all required fields for registration. After that, by pressing the register button (in the Qt form), you will use a remote api (php?, cgi? as you prefear) to create the new customer. If the remote server reply ok the user is registered.
Using a Qt form instead of to open the company website in a browser, prevents you to have problems with traslation and you will control the registration procedure from the begin to the end.
It is very easy do to. Made many times. -
I have this android app already created in QT. Now I need to build a login/register before entering the app.
How this should work is; any user needs to login before using the app. If they have not registered yet, if you click on register it will take you to the company website to register. When registered, same credentials should be able to make them log into the app when they come back to the app.Login-> check browser server-> opens the app.
If not a verified user, asks to register.
Redirect to the company website-> registration->redirects again to the app-> login (verifies if the user is registered)-> opens the app.Please senior developers, help me with how this can be achieved. I haven’t created any profile registration before in QT or browser ever. Guide me please, I also seem to not find any only resource to attain this.
Thankyou so much!!!