Skip to content

Commit

Permalink
Bind security key button in Login2FaFragment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomazFB committed Oct 20, 2023
1 parent 999b444 commit 415fa9e
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public class Login2FaFragment extends LoginBaseFormFragment<LoginListener> imple
ArrayList<Integer> mOldSitesIDs;

private Button mOtpButton;
private Button mSecurityKeyButton;
private String mEmailAddress;
private String mIdToken;
private String mNonce;
Expand Down Expand Up @@ -186,6 +187,11 @@ public void onClick(View v) {
}
}
});

mSecurityKeyButton = rootView.findViewById(R.id.login_security_key_button);
mSecurityKeyButton.setOnClickListener(view -> {

});
}

@Override
Expand Down

0 comments on commit 415fa9e

Please sign in to comment.