I keep coming back to this in my search to find a shortcode to display the same content (like the avatar, profile link, etc.) as the widget titled (bbPress) Login Widget.
Unfortunately, none of these account-related shortcodes from https://codex.bbpress.org/shortcodes/
[bbp-login] – Display the login screen.
[bbp-register] – Display the register screen.
[bbp-lost-pass] – Display the lost password screen.
show the same content as the widget, especially for a logged in user. There doesn’t seem to be a shortcode, so instead, I’m using this successfully.
if (class_exists('BBP_Login_Widget')) {
the_widget('BBP_Login_Widget');
}