Making WordPress.org

Ticket #148: 148.patch

File 148.patch, 3.1 KB (added by ocean90, 8 years ago)
  • trunk/common/includes/wporg-sso/wp-plugin.php

     
    2121                        'loggedout'    => '/loggedout',
    2222                        'lostpassword' => '/lostpassword',
    2323                        'oauth'        => '/oauth',
     24                        'register'     => '/register',
    2425                );
    2526
    2627                /**
  • trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/partials/register.php

     
     1<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>
     2
     3<form name="registerform" id="registerform" action="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login_post' ) ); ?>" method="post" novalidate="novalidate">
     4        <h3><?php _e( 'User Information' ); ?></h3>
     5        <p>
     6                <label for="user_login">
     7                        <?php _e( 'Username' ) ?><br />
     8                        <small><?php _e( 'Only lower case letters (a-z) and numbers (0-9) are allowed.', 'wporg-forums' ); ?></small>
     9                        <input type="text" name="user_login" id="user_login" class="input" value="" size="20" />
     10                </label>
     11        </p>
     12        <p>
     13                <label for="user_email">
     14                        <?php _e( 'Email' ) ?><br />
     15                        <input type="email" name="user_email" id="user_email" class="input" value="" size="25" />
     16                </label>
     17        </p>
     18
     19        Website
     20
     21        <h3><?php _e( 'Profile Information <span>(optional)</span>' ); ?></h3>
     22
     23        <p>
     24                <label for="user_website">
     25                        <?php _e( 'Website' ) ?><br />
     26                        <input type="email" name="user_website" id="user_website" class="input" value="" size="25" />
     27                </label>
     28        </p>
     29
     30        <p>
     31                <label for="user_location">
     32                        <?php _e( 'Location' ) ?><br />
     33                        <input type="email" name="user_location" id="user_location" class="input" value="" size="25" />
     34                </label>
     35        </p>
     36
     37        <p>
     38                <label for="user_occupation">
     39                        <?php _e( 'Occupation' ) ?><br />
     40                        <input type="email" name="user_occupation" id="user_occupation" class="input" value="" size="25" />
     41                </label>
     42        </p>
     43
     44        <p>
     45                <label for="user_interests">
     46                        <?php _e( 'Interests' ) ?><br />
     47                        <textarea type="email" name="user_interests" id="user_interests" class="input" value="" row="3"></textarea>
     48                </label>
     49        </p>
     50
     51        <h3><?php _e( 'Mailing Lists' ); ?></h3>
     52
     53        <p>
     54                <label for="notify_list">
     55                        <input type="checkbox" name="notify_list" id="notify_list" class="input" value="true" />
     56                        <?php _e( 'Subscribe to WordPress Announcements (a few messages a year)' ) ?><br />
     57                </label>
     58        </p>
     59
     60        <p id="reg_passmail">
     61                <?php _e( 'Registration confirmation will be emailed to you.' ); ?>
     62        </p>
     63
     64        <p class="submit">
     65                <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e( 'Register' ); ?>" />
     66        </p>
     67</form>
     68
     69