Trail growth
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user