How do you get data of 2 tags on CloudDB?

How do you get data of 2 tags on CloudDB? Because I'm trying to make a Username and PIN. Can anyone answer?

Why would these be in two separate tags ?

Regardless, use the getValue block to call a tag, the gotValue block to get the value. You can use if/else conditional statements in gotValue to do different things with different tags.

Usermame text box and PIN text box

So, tag = username, value = PIN ?

or tag = user1, values = [username,PIN] << a list

tag = Username
value = UsernameBox.Text
tag = PIN
value = PINbox.Text

And what happens if you have more than one user ?

I'm not sure