cloudDB not responding with no errors

i am currently trying to make a login and sign in system in MIT using cloudDB. Even though i believe that my code is correct, after clicking the "sign in" button (which should save the username and psw to cloudDB), nothing happens. I have been searching for similar conversations for a while but still no fix to it. please help its for a school project🙏


tic_tak_toe.aia (2.4 MB)


this is how the screen should look (the red lines should not be visible for the user)

i am also trying to find a way to prevent 2 users from using the same username. if you can help me that would be great, thank you!!

Let me make a working example of what you want.
But first let's fix some minor issues in your project:

  • User data not encrypted(use the MareshaAES extension) -> for user data safety.
  • No event triggered after the sign up button was clicked -> so you don't know if the process has been successful.
  • Can just use a single Label component for the error messages.
  • Can use color None on VerticalArrangement and other ~Arrangement components.
  • No need to add an additional VerticalArrangement component in a Screen component which already acts same.
  • Can use the TableArrangement component. On Screen1
  • Can use a more easy-to-recognize component naming schemes and a more interactive UI for better component management(e.g. screens signup, Screen2)
  • Can rename screen names except for Screen1 for better screen management.
  • Need to clean up blocks and remove boilerplates(as they are the origin of bugs and harder code management)
  • Can use percent values for responsive, flexible, and user-friendly UI.
  • Can remove unnecessary UI components such as admin commands etc.
  • And like... a hundred more(I inspected your project and it does need hundreds of painful surgeries)

I might take a moment since I'm making another example for a different user.

This project was hard to address problems, bugs, and etc.
I would appreciate a solution mark on this post if my edit was helpful
I never worked on a project that was this hard to get rid of issues.

I finished fixing the problems, with:

  • New component naming schemes
  • Changed "password" inputs which were TextBox es which make the password naked to PasswordTextBox components
  • Working Signup/Login system with multiple user checking features.
  • Removed boilerplates
  • A slight enhanced UI(didn't change the layouts, only removed unnecessary or unneeded components, did not delete any text or other components)
  • Variable and alert message names enhanced(e.g. psw_enter to ConfirmPassword)
  • Additional comments in blocks editor for explaining what was wrong.
  • Occasional misspelling fixes.
  • Added a new BGM track
    generated by Suno(AI), didn't program them to be played.

What I didn't add:

  • Additional error handling in login systems
  • Blank input filtering(no username and no password users)

Additional/Advice:

  • Add some error handling, and blank username/password filtering functionalities
  • Try to use effective and easy-to-memorize naming schemes.

Here's the modified project file:

tic_tak_toe.aia (6.0 MB)

Thank you for your help! I checked it out and it works perfectly fine! i will take your suggestions seriously and try to apply them.

You're welcome! Don't be rushed just to apply my advices if the deadline is close, first code them one by one. If you want to see how it works, make another project that can view the data from the CloudDB server.
Should I create an example app for it?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.