Index: trunk/common/includes/wporg-sso/wp-plugin.php
===================================================================
--- trunk/common/includes/wporg-sso/wp-plugin.php	(revision 4120)
+++ trunk/common/includes/wporg-sso/wp-plugin.php	(working copy)
@@ -21,6 +21,7 @@
 			'loggedout'    => '/loggedout',
 			'lostpassword' => '/lostpassword',
 			'oauth'        => '/oauth',
+			'register'     => '/register',
 		);

 		/**
Index: trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/partials/register.php
===================================================================
--- trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/partials/register.php	(revision 0)
+++ trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/partials/register.php	(working copy)
@@ -0,0 +1,69 @@
+<p class="intro"><?php _e( 'Register your WordPress.org account to contribute to WordPress, get help in the support forum, or rate and review themes and plugins.', 'wporg-login' ); ?></p>
+
+<form name="registerform" id="registerform" action="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login_post' ) ); ?>" method="post" novalidate="novalidate">
+	<h3><?php _e( 'User Information' ); ?></h3>
+	<p>
+		<label for="user_login">
+			<?php _e( 'Username' ) ?><br />
+			<small><?php _e( 'Only lower case letters (a-z) and numbers (0-9) are allowed.', 'wporg-forums' ); ?></small>
+			<input type="text" name="user_login" id="user_login" class="input" value="" size="20" />
+		</label>
+	</p>
+	<p>
+		<label for="user_email">
+			<?php _e( 'Email' ) ?><br />
+			<input type="email" name="user_email" id="user_email" class="input" value="" size="25" />
+		</label>
+	</p>
+
+	Website
+
+	<h3><?php _e( 'Profile Information <span>(optional)</span>' ); ?></h3>
+
+	<p>
+		<label for="user_website">
+			<?php _e( 'Website' ) ?><br />
+			<input type="email" name="user_website" id="user_website" class="input" value="" size="25" />
+		</label>
+	</p>
+
+	<p>
+		<label for="user_location">
+			<?php _e( 'Location' ) ?><br />
+			<input type="email" name="user_location" id="user_location" class="input" value="" size="25" />
+		</label>
+	</p>
+
+	<p>
+		<label for="user_occupation">
+			<?php _e( 'Occupation' ) ?><br />
+			<input type="email" name="user_occupation" id="user_occupation" class="input" value="" size="25" />
+		</label>
+	</p>
+
+	<p>
+		<label for="user_interests">
+			<?php _e( 'Interests' ) ?><br />
+			<textarea type="email" name="user_interests" id="user_interests" class="input" value="" row="3"></textarea>
+		</label>
+	</p>
+
+	<h3><?php _e( 'Mailing Lists' ); ?></h3>
+
+	<p>
+		<label for="notify_list">
+			<input type="checkbox" name="notify_list" id="notify_list" class="input" value="true" />
+			<?php _e( 'Subscribe to WordPress Announcements (a few messages a year)' ) ?><br />
+		</label>
+	</p>
+
+	<p id="reg_passmail">
+		<?php _e( 'Registration confirmation will be emailed to you.' ); ?>
+	</p>
+
+	<p class="submit">
+		<input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e( 'Register' ); ?>" />
+	</p>
+</form>
+
+
