// Use this for initialization
 void Start()
 {
     this.UpdateDisplayName.onClick.AddListener(() => PlayFabLoginCalls.UpdateDisplayName(this.displayName.text));
     this.CompleteAccount.onClick.AddListener(() => PlayFabLoginCalls.AddUserNameAndPassword(username.text, password.text, email.text));
     this.SendRecoveryEmail.onClick.AddListener(() => PlayFabLoginCalls.SendAccountRecoveryEmail(PlayFabLoginCalls.LoggedInUserInfo.PrivateInfo.Email));
 }