Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/user-profile.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/user-profile.php	(nonexistent)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/user-profile.php	(working copy)
@@ -0,0 +1,29 @@
+<?php
+
+/**
+ * User Profile
+ *
+ * @package bbPress
+ * @subpackage Theme
+ */
+
+do_action( 'bbp_template_before_user_profile' ); ?>
+
+<div id="bbp-user-profile" class="bbp-user-profile">
+	<h2 class="entry-title"><?php esc_html_e( 'Profile', 'wporg-forums' ); ?></h2>
+	<div class="bbp-user-section">
+
+		<?php if ( bbp_get_displayed_user_field( 'description' ) ) : ?>
+
+			<p class="bbp-user-description"><?php bbp_displayed_user_field( 'description' ); ?></p>
+
+		<?php endif; ?>
+
+		<p class="bbp-user-forum-role"><?php   printf( esc_html__( 'Forum Role: %s',      'wporg-forums' ), bbp_get_user_display_role()    ); ?></p>
+		<p class="bbp-user-member-since"><?php printf( esc_html__( 'Member Since: %s',    'wporg-forums' ), wporg_support_get_user_registered_date() ); ?></p>
+		<p class="bbp-user-topic-count"><?php  printf( esc_html__( 'Topics Started: %s',  'wporg-forums' ), bbp_get_user_topic_count_raw() ); ?></p>
+		<p class="bbp-user-reply-count"><?php  printf( esc_html__( 'Replies Created: %s', 'wporg-forums' ), bbp_get_user_reply_count_raw() ); ?></p>
+	</div>
+</div><!-- #bbp-author-topics-started -->
+
+<?php do_action( 'bbp_template_after_user_profile' );
Index: sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php	(revision 4012)
+++ sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php	(working copy)
@@ -175,6 +172,15 @@
 // Temporarily remove the redirect to `https://profiles.wordpress.org/`, see #meta1868.
 // add_filter( 'bbp_pre_get_user_profile_url', 'wporg_support_profile_url' );
 
+/**
+ * Get user's registration date.
+ */
+function wporg_support_get_user_registered_date( $user_id = 0 ) {
+	$user = get_userdata( bbp_get_user_id( $user_id ) );
+
+	return mysql2date( 'F jS, Y', $user->user_registered );
+}
+
 /** bb Base *******************************************************************/
 
 function bb_base_search_form() {
