How to Create Login with Username and Password in Unity?

Hi i have a question on how to create a login system with username and password in unity. i look in the document it only have a tutorial on JS but i dont understand it. every answer will help me a lot thank.

newUser = Moralis.Create<MoralisUser>();
The Moralis.Create will wire the new user object properly
Then :

newUser.password = string
newUser.username = string
newUser.email = string (optional param)
await newUser.SignUpAsync();
``
1 Like