Trail growth

This commit is contained in:
Sewmina
2022-06-30 03:18:02 +05:30
parent 253710d137
commit f18f2562eb
14 changed files with 7159 additions and 7158 deletions

View File

@@ -64,7 +64,7 @@ public class LoginManager : MonoBehaviour
MessageDialogInstance.messageDialog.ShowDialog("Error", "Please use a Strong password (should be more than 5 characters)");
return;
}
Debug.Log("Clicked register");
StartCoroutine(Register());
}
@@ -113,7 +113,7 @@ public class LoginManager : MonoBehaviour
WWWForm form = new WWWForm();
form.AddField("name", reg_username.text);
form.AddField("password", reg_password.text);
Debug.Log("Registering");
WWW www = new WWW(DBmanager.phpRoot + "register.php", form);
yield return www;
if (www.text == "0")