Register and Login

Well the value returned for your tag username:

image

does not equal PasswordTextBox1.Text, that value contains everything:

image

You could use the contains text block ?

Note: you are storing user passwords in plain text, not good for their personal data security.

You also use maths blocks for your tests, may be better to use text or logic blocks.

i have an idea, How can i make multiple values under one tag so i can add all these datqa plus the password under the name tag?

To store password hashes is very simple, the tools extension offers a method for that App Inventor Extensions: Tools | Pura Vida Apps

And later if you want to check, if the entered password is correct, compare the password hashes

Taifun

Here demonstrates a javascript hashing function, if you cannot use extensions

please help me by a screen for how to fix the login as you can see the tag data has all these values data so how can i split the password so i can login successfully?

Learn to work with lists and store your data as list... later use the select list item block to select the password from the list

Taifun

As I already said, you could probably use the "contains" text block to find the password in your tag's value.

thanks so much its working well now

Looks wrong to me...

"text" should be the "value" of the tag username
"piece" should be just PasswordTextBox1.Text

yes thanks but it didnt work as well, i thought that been fixed yesterday but i was wrong so can you check how can i fix it please?

image

based on what you previously showed for your data entry:

image

thanks so much for the quick reply, i did everything you showed me but it opened immediately without adding the id and password

The GotValue should not be activated until you call the GetValue method. Are you calling it elsewhere ?

it just here on both screens below


Hmm, there are too many false positives with this method.

Do as Taifun initially suggested and store your profile data as a list, and also check if the user is already present in the taglist.

Example blocks

thanks so much its working well but one more thing please, if i wanna add an image to these data as well, How can it be under the same tag? lets screen it please

thanks so much i just made it

Great
Now follow this recommendation to keep your users data save

To store password hashes is very simple, the tools extension offers a method for that App Inventor Extensions: Tools | Pura Vida Apps

And later if you want to check, if the entered password is correct, compare the password hashes

Taifun

sure, thanks again for the help