コード例 #1
0
ファイル: UIManager.cs プロジェクト: Aryan2213/Loging
    public void ResetPassword()
    {
        var usersUsername = DBContext.GetUsernameFromEmail(emailR.text);

        Debug.Log(usersUsername);

        resetCode = WebFunctions.Generate6CharResetCode();

        WebFunctions.SendResetEmail(emailR.text, usersUsername, resetCode);

        // Tkae them to the next screen
    }