1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<?php SimpleWpMembership::enqueue_validation_scripts(array('ajaxEmailCall' => array('extraData' => '&action=swpm_validate_email&member_id=' . filter_input(INPUT_GET, 'member_id')))); $settings = SwpmSettings::get_instance(); $force_strong_pass = $settings->get_value('force-strong-passwords'); if (!empty($force_strong_pass)) { $pass_class = "validate[required,custom[strongPass],minSize[8]]"; } else { $pass_class = ""; } ?> <div class="swpm-registration-widget-form"> <form id="swpm-registration-form" class="swpm-validate-form" name="swpm-registration-form" method="post" action=""> <input type ="hidden" name="level_identifier" value="<?php echo $level_identifier ?>" /> <table> <tr class="swpm-registration-username-row"> <td><label for="user_name"><?php echo SwpmUtils::_('用戶名') ?></label></td> <td><input type="text" id="user_name" class="validate[required,custom[noapostrophe],custom[SWPMUserName],minSize[4],ajax[ajaxUserCall]]" value="<?php echo esc_attr($user_name); ?>" size="50" name="user_name" /></td> </tr> <tr class="swpm-registration-email-row"> <td><label for="email"><?php echo SwpmUtils::_('電子郵件') ?></label></td> <td><input type="text" autocomplete="off" id="email" class="validate[required,custom[email],ajax[ajaxEmailCall]]" value="<?php echo esc_attr($email); ?>" size="50" name="email" /></td> </tr> <tr class="swpm-registration-password-row"> <td><label for="password"><?php echo SwpmUtils::_('密碼') ?></label></td> <td><input type="password" autocomplete="off" id="password" class="<?php echo $pass_class; ?>" value="" size="50" name="password" /></td> </tr> <tr class="swpm-registration-password-retype-row"> <td><label for="password_re"><?php echo SwpmUtils::_('再輸入密碼') ?></label></td> <td><input type="password" autocomplete="off" id="password_re" value="" size="50" name="password_re" /></td> </tr> <tr class="swpm-registration-firstname-row"> <td><label for="first_name"><?php echo SwpmUtils::_('名字') ?></label></td> <td><input type="text" id="first_name" value="<?php echo esc_attr($first_name); ?>" size="50" name="first_name" /></td> </tr> <tr class="swpm-registration-lastname-row"> <td><label for="last_name"><?php echo SwpmUtils::_('姓') ?></label></td> <td><input type="text" id="last_name" value="<?php echo esc_attr($last_name); ?>" size="50" name="last_name" /></td> </tr> <tr class="swpm-registration-membership-level-row"> <td><label for="membership_level"><?php echo SwpmUtils::_('會員級別') ?></label></td> <td> <?php echo $membership_level_alias; //Show the level name in the form. //Add the input fields for the level data. echo '<input type="hidden" value="' . $membership_level . '" size="50" name="membership_level" id="membership_level" />'; //Add the level input verification data. $swpm_p_key = get_option('swpm_private_key_one'); if (empty($swpm_p_key)) { $swpm_p_key = uniqid('', true); update_option('swpm_private_key_one', $swpm_p_key); } $swpm_level_hash = md5($swpm_p_key . '|' . $membership_level); //level hash echo '<input type="hidden" name="swpm_level_hash" value="' . $swpm_level_hash . '" />'; ?> </td> </tr> <?php //check if we need to display Terms and Conditions checkbox $terms_enabled = $settings->get_value('enable-terms-and-conditions'); if (!empty($terms_enabled)) { $terms_page_url = $settings->get_value('terms-and-conditions-page-url'); ?> <tr> <td colspan="2" style="text-align: center;"> <label><input type="checkbox" id="accept_terms" name="accept_terms" class="validate[required]" value="1"> <?php echo SwpmUtils::_('I accept the ') ?> <a href="<?php echo $terms_page_url; ?>" target="_blank"><?php echo SwpmUtils::_('Terms and Conditions') ?></a></label> </td> </tr> <?php } //check if we need to display Privacy Policy checkbox $pp_enabled = $settings->get_value('enable-privacy-policy'); if (!empty($pp_enabled)) { $pp_page_url = $settings->get_value('privacy-policy-page-url'); ?> <tr> <td colspan="2" style="text-align: center;"> <label><input type="checkbox" id="accept_pt" name="accept_pp" class="validate[required]" value="1"> <?php echo SwpmUtils::_('I agree to the ') ?> <a href="<?php echo $pp_page_url; ?>" target="_blank"><?php echo SwpmUtils::_('Privacy Policy') ?></a></label> </td> </tr> <?php } ?> </table>
<div class="swpm-before-registration-submit-section" align="center"><?php echo apply_filters('swpm_before_registration_submit_button', ''); ?></div>
<div class="swpm-registration-submit-section" align="center"> <input type="submit" value="<?php echo SwpmUtils::_('註冊會員') ?>" class="swpm-registration-submit" name="swpm_registration_submit" /> </div>
<input type="hidden" name="action" value="custom_posts" />
</form> </div>
|