✏️ 正在编辑: form-login.php
路径:
/home/h359620/public_html/wp-content/themes/datis/woocommerce/myaccount/form-login.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Login Form * @package WooCommerce\Templates * @version 9.9.0 */ defined('ABSPATH') || exit; do_action('woocommerce_before_customer_login_form'); if (!function_exists('datis_t')) { function datis_t(string $text): string { if (function_exists('datis')) { return (string) datis($text, 'datis'); } return (string) __($text, 'datis'); } } $registration_enabled = ('yes' === get_option('woocommerce_enable_myaccount_registration')); $show = 'login'; if ($registration_enabled && isset($_GET['action']) && $_GET['action'] === 'register') { $show = 'register'; } $home_url = home_url('/'); $register_url = esc_url(add_query_arg('action', 'register')); $login_url = esc_url(remove_query_arg('action')); wc_print_notices(); $demo = get_option('datis_active_demo'); ?> <div class="auth-wrap d-flex align-items-center justify-content-center"> <?php if ($show === 'register') : ?> <div class="auth-register"> <div class="auth-header"> <?php echo esc_html__('Create account', 'datis'); ?> </div> <div class="auth-content d-flex flex-column gap-4"> <?php if ($demo != 'industry' || $demo != 'architecture') : ?> <h3> <?php echo esc_html__('Create account', 'datis'); ?> </h3> <?php endif; ?> <p class="auth-text"><?php echo esc_html(esc_html__('Please fill out this form to create your account.', 'datis')); ?></p> <form method="post" class="woocommerce-form woocommerce-form-register register w-100 p-0 m-0 border-0 d-flex flex-column gap-3"> <?php do_action('woocommerce_register_form_start'); ?> <div class="auth-inputs d-flex flex-column gap-3"> <?php if ('no' === get_option('woocommerce_registration_generate_username')): ?> <div class="auth-input"> <div class="input-icon"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="12" cy="6" r="4" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" /> <path d="M15 20.6151C14.0907 20.8619 13.0736 21 12 21C8.13401 21 5 19.2091 5 17C5 14.7909 8.13401 13 12 13C15.866 13 19 14.7909 19 17C19 17.3453 18.9234 17.6804 18.7795 18" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> </svg> </div> <input type="text" name="username" id="reg_username" autocomplete="username" placeholder="<?php echo esc_attr(esc_html__('Username', 'datis')); ?>" value="<?php echo !empty($_POST['username']) ? esc_attr(wp_unslash($_POST['username'])) : ''; ?>"> </div> <?php endif; ?> <div class="auth-input"> <div class="input-icon"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M22 12C22 15.7712 22 17.6569 20.8284 18.8284C19.6569 20 17.7712 20 14 20H10C6.22876 20 4.34315 20 3.17157 18.8284C2 17.6569 2 15.7712 2 12C2 8.22876 2 6.34315 3.17157 5.17157C4.34315 4 6.22876 4 10 4H14C17.7712 4 19.6569 4 20.8284 5.17157C21.4816 5.82475 21.7706 6.69989 21.8985 8" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> <path d="M18 8L15.8411 9.79908C14.0045 11.3296 13.0861 12.0949 12 12.0949C11.3507 12.0949 10.7614 11.8214 10 11.2744M6 8L6.9 8.75L7.8 9.5" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> </svg> </div> <input type="email" name="email" id="reg_email" autocomplete="email" placeholder="<?php echo esc_attr(esc_html__('Email', 'datis')); ?>" value="<?php echo !empty($_POST['email']) ? esc_attr(wp_unslash($_POST['email'])) : ''; ?>" required> </div> <?php if ('no' === get_option('woocommerce_registration_generate_password')): ?> <div class="auth-input"> <div class="input-icon"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="12" cy="16" r="2" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" /> <path d="M6 10V8C6 7.65929 6.0284 7.32521 6.08296 7M18 10V8C18 4.68629 15.3137 2 12 2C10.208 2 8.59942 2.78563 7.5 4.03126" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> <path d="M11 22H8C5.17157 22 3.75736 22 2.87868 21.1213C2 20.2426 2 18.8284 2 16C2 13.1716 2 11.7574 2.87868 10.8787C3.75736 10 5.17157 10 8 10H16C18.8284 10 20.2426 10 21.1213 10.8787C22 11.7574 22 13.1716 22 16C22 18.8284 22 20.2426 21.1213 21.1213C20.2426 22 18.8284 22 16 22H15" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> </svg> </div> <input type="password" name="password" id="reg_password" autocomplete="new-password" placeholder="<?php echo esc_attr(esc_html__('Password', 'datis')); ?>"> </div> <?php endif; ?> </div> <?php do_action('woocommerce_register_form'); ?> <div class="auth-conditions d-flex flex-row align-items-center gap-2 justify-content-start w-100"> <input type="checkbox" id="datis_terms" required style="position:absolute;opacity:0;pointer-events:none;"> <span class="conditions-check" data-check-for="datis_terms"></span> <?php echo esc_html(esc_html__('I agree to the terms of service.', 'datis')); ?> </div> <?php wp_nonce_field('woocommerce-register', 'woocommerce-register-nonce'); ?> <button type="submit" class="auth-submit mt-2 d-flex align-self-start justify-content-start" name="register" value="1"> <?php if ($demo == 'industry') : ?> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M14.3601 4.07866L15.2869 3.15178C16.8226 1.61607 19.3125 1.61607 20.8482 3.15178C22.3839 4.68748 22.3839 7.17735 20.8482 8.71306L19.9213 9.63993M14.3601 4.07866C14.3601 4.07866 14.4759 6.04828 16.2138 7.78618C17.9517 9.52407 19.9213 9.63993 19.9213 9.63993M14.3601 4.07866L12 6.43872M19.9213 9.63993L14.6607 14.9006L11.5613 18L11.4001 18.1612C10.8229 18.7383 10.5344 19.0269 10.2162 19.2751C9.84082 19.5679 9.43469 19.8189 9.00498 20.0237C8.6407 20.1973 8.25352 20.3263 7.47918 20.5844L4.19792 21.6782M4.19792 21.6782L3.39584 21.9456C3.01478 22.0726 2.59466 21.9734 2.31063 21.6894C2.0266 21.4053 1.92743 20.9852 2.05445 20.6042L2.32181 19.8021M4.19792 21.6782L2.32181 19.8021M2.32181 19.8021L3.41556 16.5208C3.67368 15.7465 3.80273 15.3593 3.97634 14.995C4.18114 14.5653 4.43213 14.1592 4.7249 13.7838C4.97308 13.4656 5.26166 13.1771 5.83882 12.5999L8.5 9.93872" stroke="var(--datis-primary-color)" stroke-width="1.5" stroke-linecap="round" /> </svg> <?php elseif ($demo == 'business'): ?> <svg width="44" height="40" viewBox="0 0 44 40" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10 40C4.47715 40 -1.95703e-07 35.5228 -4.37114e-07 30L-1.31134e-06 10C-1.55275e-06 4.47715 4.47715 -1.95703e-07 10 -4.37114e-07L33.1922 -1.45088e-06C39.6979 -1.73525e-06 44.4715 6.11389 42.8937 12.4254L37.8937 32.4254C36.7807 36.877 32.7809 40 28.1922 40L10 40Z" fill="#F9E65C" /> <path d="M15.3433 15.3139H22.3286M15.3433 15.3139V22.2992M15.3433 15.3139L21.4554 21.4261M24.657 24.6276L23.2017 23.1724" stroke="#0A2647" stroke-width="1.23483" stroke-linecap="round" stroke-linejoin="round" /> </svg> <?php else : ?> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M6 6H15M6 6V15M6 6L12.5 12.5M18 18L15.5 15.5" stroke="#F7F6FE" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> </svg> <?php endif; ?> <?php if ($demo == 'industry' || $demo == 'business') : echo esc_html__('Sign up', 'datis'); else : ?> <span><?php echo esc_html__('Sign up', 'datis'); ?></span> <?php endif; ?> </button> <div class="auth-new d-flex flex-row w-100 align-items-center justify-content-start gap-1"> <?php echo esc_html(esc_html__('Already have an account?', 'datis')); ?> <a href="<?php echo $login_url; ?>"><?php echo esc_html(esc_html__('Sign in', 'datis')); ?></a> </div> <?php do_action('woocommerce_register_form_end'); ?> </form> </div> <div class="auth-footer mt-3 d-flex flex-row align-items-end justify-content-end w-100"> <a href="<?php echo esc_url($home_url); ?>"><?php echo esc_html(esc_html__('Back to homepage', 'datis')); ?></a> </div> </div> <?php else : ?> <div class="auth-login"> <div class="auth-header"> <?php echo esc_html( sprintf( esc_html__('Sign in to %s', 'datis'), get_bloginfo('name') ) ); ?> </div> <div class="auth-content d-flex flex-column gap-4"> <?php if ($demo != 'industry' || $demo != 'architecture') : ?> <h3> <?php echo esc_html( sprintf( esc_html__('Sign in to %s', 'datis'), get_bloginfo('name') ) ); ?> </h3> <?php endif; ?> <p class="auth-text"> <?php echo esc_html__('Please enter your username (email) and password to sign in to your account.', 'datis'); ?> </p> <form class="woocommerce-form woocommerce-form-login login w-100 p-0 m-0 border-0 d-flex flex-column gap-3" method="post"> <?php do_action('woocommerce_login_form_start'); ?> <div class="auth-inputs d-flex flex-column gap-3"> <div class="auth-input"> <div class="input-icon"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="12" cy="6" r="4" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" /> <path d="M15 20.6151C14.0907 20.8619 13.0736 21 12 21C8.13401 21 5 19.2091 5 17C5 14.7909 8.13401 13 12 13C15.866 13 19 14.7909 19 17C19 17.3453 18.9234 18.0 18.7795 18" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> </svg> </div> <input type="text" name="username" id="username" autocomplete="username" placeholder="<?php echo esc_attr(esc_html__('Username or email', 'datis')); ?>" value="<?php echo !empty($_POST['username']) ? esc_attr(wp_unslash($_POST['username'])) : ''; ?>" required> </div> <div class="auth-input"> <div class="input-icon"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="12" cy="16" r="2" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" /> <path d="M6 10V8C6 7.65929 6.0284 7.32521 6.08296 7M18 10V8C18 4.68629 15.3137 2 12 2C10.208 2 8.59942 2.78563 7.5 4.03126" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> <path d="M11 22H8C5.17157 22 3.75736 22 2.87868 21.1213C2 20.2426 2 18.8284 2 16C2 13.1716 2 11.7574 2.87868 10.8787C3.75736 10 5.17157 10 8 10H16C18.8284 10 20.2426 10 21.1213 10.8787C22 11.7574 22 13.1716 22 16C22 18.8284 22 20.2426 21.1213 21.1213C20.2426 22 18.8284 22 16 22H15" stroke="var(--datis-primary-color)" stroke-opacity="0.6" stroke-width="1.5" stroke-linecap="round" /> </svg> </div> <input type="password" name="password" id="password" autocomplete="current-password" placeholder="<?php echo esc_attr(esc_html__('Password', 'datis')); ?>" required> </div> </div> <?php do_action('woocommerce_login_form'); ?> <div class="d-flex flex-row w-100 align-items-center justify-content-between"> <div class="auth-conditions d-flex flex-row align-items-center gap-2 justify-content-start w-100"> <input type="checkbox" id="datis_remember" style="position:absolute;opacity:0;pointer-events:none;"> <span class="conditions-check" data-check-for="datis_remember"></span> <?php echo esc_html(esc_html__('Remember me', 'datis')); ?> </div> <a href="<?php echo esc_url(wp_lostpassword_url()); ?>" class="auth-forget-pass"> <?php echo esc_html(esc_html__('Forgot your password?', 'datis')); ?> </a> </div> <?php if ($registration_enabled): ?> <div class="auth-new d-flex flex-row w-100 align-items-center justify-content-start gap-1"> <?php echo esc_html(esc_html__("Don't have an account?", 'datis')); ?> <a href="<?php echo $register_url; ?>"><?php echo esc_html(esc_html__('Sign up', 'datis')); ?></a> </div> <?php endif; ?> <?php wp_nonce_field('woocommerce-login', 'woocommerce-login-nonce'); ?> <button type="submit" class="auth-submit mt-2 d-flex align-self-start justify-content-start" name="login" value="1"> <?php if ($demo == 'industry') : ?> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M14.3601 4.07866L15.2869 3.15178C16.8226 1.61607 19.3125 1.61607 20.8482 3.15178C22.3839 4.68748 22.3839 7.17735 20.8482 8.71306L19.9213 9.63993M14.3601 4.07866C14.3601 4.07866 14.4759 6.04828 16.2138 7.78618C17.9517 9.52407 19.9213 9.63993 19.9213 9.63993M14.3601 4.07866L12 6.43872M19.9213 9.63993L14.6607 14.9006L11.5613 18L11.4001 18.1612C10.8229 18.7383 10.5344 19.0269 10.2162 19.2751C9.84082 19.5679 9.43469 19.8189 9.00498 20.0237C8.6407 20.1973 8.25352 20.3263 7.47918 20.5844L4.19792 21.6782M4.19792 21.6782L3.39584 21.9456C3.01478 22.0726 2.59466 21.9734 2.31063 21.6894C2.0266 21.4053 1.92743 20.9852 2.05445 20.6042L2.32181 19.8021M4.19792 21.6782L2.32181 19.8021M2.32181 19.8021L3.41556 16.5208C3.67368 15.7465 3.80273 15.3593 3.97634 14.995C4.18114 14.5653 4.43213 14.1592 4.7249 13.7838C4.97308 13.4656 5.26166 13.1771 5.83882 12.5999L8.5 9.93872" stroke="var(--datis-primary-color)" stroke-width="1.5" stroke-linecap="round" /> </svg> <?php elseif ($demo == 'business'): ?> <svg width="44" height="40" viewBox="0 0 44 40" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10 40C4.47715 40 -1.95703e-07 35.5228 -4.37114e-07 30L-1.31134e-06 10C-1.55275e-06 4.47715 4.47715 -1.95703e-07 10 -4.37114e-07L33.1922 -1.45088e-06C39.6979 -1.73525e-06 44.4715 6.11389 42.8937 12.4254L37.8937 32.4254C36.7807 36.877 32.7809 40 28.1922 40L10 40Z" fill="#F9E65C" /> <path d="M15.3433 15.3139H22.3286M15.3433 15.3139V22.2992M15.3433 15.3139L21.4554 21.4261M24.657 24.6276L23.2017 23.1724" stroke="#0A2647" stroke-width="1.23483" stroke-linecap="round" stroke-linejoin="round" /> </svg> <?php else : ?> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M6 6H15M6 6V15M6 6L12.5 12.5M18 18L15.5 15.5" stroke="#F7F6FE" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path> </svg> <?php endif; ?> <?php if ($demo == 'industry' || $demo == 'business') : echo esc_html__('Sign in', 'datis'); else : ?> <span><?php echo esc_html__('Sign in', 'datis'); ?></span> <?php endif; ?> </button> <?php do_action('woocommerce_login_form_end'); ?> </form> </div> <div class="auth-footer mt-3 d-flex flex-row align-items-end justify-content-end w-100"> <a href="<?php echo esc_url($home_url); ?>"><?php echo esc_html(esc_html__('Back to homepage', 'datis')); ?></a> </div> </div> <?php endif; ?> </div> <div class="auth-bg"> <?php if ($demo == 'industry') : ?> <svg width="1280" height="257" viewBox="0 0 1280 257" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1280 193C1280 228.346 1251.35 257 1216 257H64C28.6538 257 0 228.346 0 193V64C0 28.6538 28.6538 0 64 0H1216C1251.35 0 1280 28.6538 1280 64V193Z" fill="var(--datis-primary-color)" /> <mask id="mask0_1059_19427" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1280" height="257"> <path d="M1280 193C1280 228.346 1251.35 257 1216 257H762.694C730.152 257 703.752 227.821 676.621 209.852C666.267 202.994 653.85 199 640.5 199C627.15 199 614.733 202.994 604.379 209.852C577.248 227.821 550.847 257 518.306 257H63.9999C28.6537 257 0 228.346 0 193V64C0 28.6538 28.6538 0 64 0H1216C1251.35 0 1280 28.6538 1280 64V193Z" fill="#E9ECF0" /> </mask> <g mask="url(#mask0_1059_19427)"> <path d="M73.6961 262C73.6961 303.254 40.2535 336.696 -1 336.696C-42.2535 336.696 -75.6961 303.254 -75.6961 262C-75.6961 220.746 -42.2535 187.304 -1 187.304C40.2535 187.304 73.6961 220.746 73.6961 262Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M95.1713 262C95.1713 315.114 52.1139 358.171 -1 358.171C-54.1139 358.171 -97.1713 315.114 -97.1713 262C-97.1713 208.886 -54.1139 165.829 -1 165.829C52.1139 165.829 95.1713 208.886 95.1713 262Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M117.58 262C117.58 327.49 64.49 380.58 -1 380.58C-66.49 380.58 -119.58 327.49 -119.58 262C-119.58 196.51 -66.49 143.42 -1 143.42C64.49 143.42 117.58 196.51 117.58 262Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M141.856 262C141.856 340.897 77.8974 404.856 -1 404.856C-79.8974 404.856 -143.856 340.897 -143.856 262C-143.856 183.103 -79.8974 119.144 -1 119.144C77.8974 119.144 141.856 183.103 141.856 262Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M168 262C168 355.336 92.3361 431 -1 431C-94.3361 431 -170 355.336 -170 262C-170 168.664 -94.3361 93 -1 93C92.3361 93 168 168.664 168 262Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M1361.7 6C1361.7 47.2535 1328.25 80.6961 1287 80.6961C1245.75 80.6961 1212.3 47.2535 1212.3 6C1212.3 -35.2535 1245.75 -68.6961 1287 -68.6961C1328.25 -68.6961 1361.7 -35.2535 1361.7 6Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M1383.17 6C1383.17 59.1139 1340.11 102.171 1287 102.171C1233.89 102.171 1190.83 59.1139 1190.83 6C1190.83 -47.1139 1233.89 -90.1713 1287 -90.1713C1340.11 -90.1713 1383.17 -47.1139 1383.17 6Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M1405.58 6C1405.58 71.49 1352.49 124.58 1287 124.58C1221.51 124.58 1168.42 71.49 1168.42 6C1168.42 -59.49 1221.51 -112.58 1287 -112.58C1352.49 -112.58 1405.58 -59.49 1405.58 6Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M1429.86 6C1429.86 84.8974 1365.9 148.856 1287 148.856C1208.1 148.856 1144.14 84.8974 1144.14 6C1144.14 -72.8974 1208.1 -136.856 1287 -136.856C1365.9 -136.856 1429.86 -72.8974 1429.86 6Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> <path d="M1456 6C1456 99.3361 1380.34 175 1287 175C1193.66 175 1118 99.3361 1118 6C1118 -87.3361 1193.66 -163 1287 -163C1380.34 -163 1456 -87.3361 1456 6Z" stroke="#F5F5F5" stroke-opacity="0.16" stroke-width="1.79787" /> </g> </svg> <?php elseif ($demo == 'business'): ?> <svg width="1280" height="357" viewBox="0 0 1280 357" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_1448_11566)"> <rect width="1280" height="357" rx="24" fill="#ECF1F7" /> <g clip-path="url(#clip1_1448_11566)"> <path d="M867.888 56.8379L872 52.7256L876.112 56.8379L872 60.9502L867.888 56.8379ZM872 56.8379L872 56.1256L1151.45 56.1256L1151.45 56.8379L1151.45 57.5502L872 57.5502L872 56.8379Z" fill="#090625" fill-opacity="0.1" /> <path d="M1153.6 463.996L1153.6 57.5433" stroke="#090625" stroke-opacity="0.1" stroke-width="1.42453" /> <rect width="11" height="12" transform="matrix(-1 0 0 1 1159 51)" fill="#0A2647" /> </g> <g clip-path="url(#clip2_1448_11566)"> <path d="M1145.11 184.162L1141 188.274L1136.89 184.162L1141 180.05L1145.11 184.162ZM1141 184.162L1141 184.874L861.547 184.874L861.547 184.162L861.547 183.45L1141 183.45L1141 184.162Z" fill="#090625" fill-opacity="0.1" /> <path d="M859.402 1.00391L859.402 183.457" stroke="#090625" stroke-opacity="0.1" stroke-width="1.42453" /> <rect width="11" height="12" transform="matrix(1 0 0 -1 854 190)" fill="#0A2647" /> </g> <g clip-path="url(#clip3_1448_11566)"> <rect width="148" height="376" transform="translate(951)" fill="#00C6A9" /> <path d="M941.222 0L934.356 17.3113C932.003 23.2432 932.774 30.8685 936.192 35.4644C939.206 39.5171 940.203 46.0047 938.679 51.6525L936.667 59.1102C934.536 67.0061 935.839 76.0712 939.945 81.9162C944.113 87.851 945.386 97.0935 943.131 105.053L939.332 118.463C937.252 125.804 937.962 134.274 941.187 140.598L941.761 141.724C944.933 147.945 945.676 156.251 943.709 163.523L938.558 182.569C936.997 188.341 937.967 194.973 940.992 199.21C944.427 204.021 945.162 211.814 942.754 217.885L940.629 223.242C937.94 230.021 938.902 238.75 942.9 243.842C947.51 249.715 947.98 260.201 943.937 266.961L943.129 268.311C939.06 275.113 939.06 285.472 943.129 292.274L944.564 294.674C948.482 301.224 948.729 311.082 945.151 318.062C940.433 327.265 942.555 340.708 949.512 345.693L951.337 347M950.527 0L943.661 17.3113C941.308 23.2432 942.079 30.8685 945.498 35.4644C948.512 39.5171 949.508 46.0047 947.984 51.6525L945.972 59.1102C943.841 67.0061 945.144 76.0712 949.25 81.9162C953.418 87.851 954.691 97.0935 952.436 105.053L948.637 118.463C946.557 125.804 947.267 134.274 950.492 140.598L951.066 141.724C954.239 147.945 954.981 156.251 953.014 163.523L947.863 182.569C946.302 188.341 947.272 194.973 950.298 199.21C953.732 204.021 954.467 211.814 952.059 217.885L949.934 223.242C947.245 230.021 948.207 238.75 952.205 243.842C956.815 249.715 957.285 260.201 953.242 266.961L952.434 268.311C948.366 275.113 948.366 285.472 952.434 292.274L953.87 294.674C957.787 301.224 958.035 311.082 954.456 318.062C949.738 327.265 951.86 340.708 958.818 345.693L960.642 347M959.833 0L952.966 17.3113C950.613 23.2432 951.385 30.8685 954.803 35.4644C957.817 39.5171 958.813 46.0047 957.29 51.6525L955.277 59.1102C953.147 67.0061 954.45 76.0712 958.555 81.9162C962.724 87.851 963.997 97.0935 961.742 105.053L957.942 118.463C955.862 125.804 956.572 134.274 959.797 140.598L960.371 141.724C963.544 147.945 964.286 156.251 962.319 163.523L957.169 182.569C955.607 188.341 956.578 194.973 959.603 199.21C963.037 204.021 963.772 211.814 961.364 217.885L959.239 223.242C956.55 230.021 957.513 238.75 961.51 243.842C966.121 249.715 966.591 260.201 962.547 266.961L961.74 268.311C957.671 275.113 957.671 285.472 961.74 292.274L963.175 294.674C967.093 301.224 967.34 311.082 963.761 318.062C959.043 327.265 961.166 340.708 968.123 345.693L969.947 347M969.138 0L962.271 17.3113C959.919 23.2432 960.69 30.8685 964.108 35.4644C967.122 39.5171 968.119 46.0047 966.595 51.6525L964.583 59.1102C962.452 67.0061 963.755 76.0712 967.86 81.9162C972.029 87.851 973.302 97.0935 971.047 105.053L967.248 118.463C965.168 125.804 965.877 134.274 969.103 140.598L969.677 141.724C972.849 147.945 973.591 156.251 971.625 163.523L966.474 182.569C964.913 188.341 965.883 194.973 968.908 199.21C972.342 204.021 973.077 211.814 970.669 217.885L968.545 223.242C965.856 230.021 966.818 238.75 970.816 243.842C975.426 249.715 975.896 260.201 971.852 266.961L971.045 268.311C966.976 275.113 966.976 285.472 971.045 292.274L972.48 294.674C976.398 301.224 976.645 311.082 973.066 318.062C968.349 327.265 970.471 340.708 977.428 345.693L979.252 347M978.443 0L971.577 17.3113C969.224 23.2432 969.995 30.8685 973.413 35.4644C976.427 39.5171 977.424 46.0047 975.9 51.6525L973.888 59.1102C971.757 67.0061 973.06 76.0712 977.166 81.9162C981.334 87.851 982.607 97.0935 980.352 105.053L976.553 118.463C974.473 125.804 975.183 134.274 978.408 140.598L978.982 141.724C982.154 147.945 982.897 156.251 980.93 163.523L975.779 182.569C974.218 188.341 975.188 194.973 978.213 199.21C981.648 204.021 982.383 211.814 979.975 217.885L977.85 223.242C975.161 230.021 976.123 238.75 980.121 243.842C984.731 249.715 985.201 260.201 981.158 266.961L980.35 268.311C976.282 275.113 976.282 285.472 980.35 292.274L981.785 294.674C985.703 301.224 985.95 311.082 982.372 318.062C977.654 327.265 979.776 340.708 986.733 345.693L988.558 347M987.749 0L980.882 17.3113C978.529 23.2432 979.301 30.8685 982.719 35.4644C985.733 39.5171 986.729 46.0047 985.205 51.6525L983.193 59.1102C981.063 67.0061 982.366 76.0712 986.471 81.9162C990.64 87.851 991.913 97.0935 989.658 105.053L985.858 118.463C983.778 125.804 984.488 134.274 987.713 140.598L988.287 141.724C991.46 147.945 992.202 156.251 990.235 163.523L985.084 182.569C983.523 188.341 984.493 194.973 987.519 199.21C990.953 204.021 991.688 211.814 989.28 217.885L987.155 223.242C984.466 230.021 985.429 238.75 989.426 243.842C994.036 249.715 994.507 260.201 990.463 266.961L989.655 268.311C985.587 275.113 985.587 285.472 989.655 292.274L991.091 294.674C995.009 301.224 995.256 311.082 991.677 318.062C986.959 327.265 989.081 340.708 996.039 345.693L997.863 347M997.054 0L990.187 17.3113C987.834 23.2432 988.606 30.8685 992.024 35.4644C995.038 39.5171 996.035 46.0047 994.511 51.6525L992.498 59.1102C990.368 67.0061 991.671 76.0712 995.776 81.9162C999.945 87.851 1001.22 97.0935 998.963 105.053L995.164 118.463C993.083 125.804 993.793 134.274 997.019 140.598L997.592 141.724C1000.76 147.945 1001.51 156.251 999.541 163.523L994.39 182.569C992.829 188.341 993.799 194.973 996.824 199.21C1000.26 204.021 1000.99 211.814 998.585 217.885L996.46 223.242C993.772 230.021 994.734 238.75 998.731 243.842C1003.34 249.715 1003.81 260.201 999.768 266.961L998.961 268.311C994.892 275.113 994.892 285.472 998.961 292.274L1000.4 294.674C1004.31 301.224 1004.56 311.082 1000.98 318.062C996.265 327.265 998.387 340.708 1005.34 345.693L1007.17 347M1006.36 0L999.493 17.3113C997.14 23.2432 997.911 30.8685 1001.33 35.4644C1004.34 39.5171 1005.34 46.0047 1003.82 51.6525L1001.8 59.1102C999.673 67.0061 1000.98 76.0712 1005.08 81.9162C1009.25 87.851 1010.52 97.0935 1008.27 105.053L1004.47 118.463C1002.39 125.804 1003.1 134.274 1006.32 140.598L1006.9 141.724C1010.07 147.945 1010.81 156.251 1008.85 163.523L1003.7 182.569C1002.13 188.341 1003.1 194.973 1006.13 199.21C1009.56 204.021 1010.3 211.814 1007.89 217.885L1005.77 223.242C1003.08 230.021 1004.04 238.75 1008.04 243.842C1012.65 249.715 1013.12 260.201 1009.07 266.961L1008.27 268.311C1004.2 275.113 1004.2 285.472 1008.27 292.274L1009.7 294.674C1013.62 301.224 1013.87 311.082 1010.29 318.062C1005.57 327.265 1007.69 340.708 1014.65 345.693L1016.47 347M1015.66 0L1008.8 17.3113C1006.45 23.2432 1007.22 30.8685 1010.63 35.4644C1013.65 39.5171 1014.65 46.0047 1013.12 51.6525L1011.11 59.1102C1008.98 67.0061 1010.28 76.0712 1014.39 81.9162C1018.56 87.851 1019.83 97.0935 1017.57 105.053L1013.77 118.463C1011.69 125.804 1012.4 134.274 1015.63 140.598L1016.2 141.724C1019.38 147.945 1020.12 156.251 1018.15 163.523L1013 182.569C1011.44 188.341 1012.41 194.973 1015.43 199.21C1018.87 204.021 1019.6 211.814 1017.2 217.885L1015.07 223.242C1012.38 230.021 1013.34 238.75 1017.34 243.842C1021.95 249.715 1022.42 260.201 1018.38 266.961L1017.57 268.311C1013.5 275.113 1013.5 285.472 1017.57 292.274L1019.01 294.674C1022.92 301.224 1023.17 311.082 1019.59 318.062C1014.88 327.265 1017 340.708 1023.95 345.693L1025.78 347M1024.97 0L1018.1 17.3113C1015.75 23.2432 1016.52 30.8685 1019.94 35.4644C1022.95 39.5171 1023.95 46.0047 1022.43 51.6525L1020.41 59.1102C1018.28 67.0061 1019.59 76.0712 1023.69 81.9162C1027.86 87.851 1029.13 97.0935 1026.88 105.053L1023.08 118.463C1021 125.804 1021.71 134.274 1024.93 140.598L1025.51 141.724C1028.68 147.945 1029.42 156.251 1027.46 163.523L1022.31 182.569C1020.74 188.341 1021.71 194.973 1024.74 199.21C1028.17 204.021 1028.91 211.814 1026.5 217.885L1024.38 223.242C1021.69 230.021 1022.65 238.75 1026.65 243.842C1031.26 249.715 1031.73 260.201 1027.68 266.961L1026.88 268.311C1022.81 275.113 1022.81 285.472 1026.88 292.274L1028.31 294.674C1032.23 301.224 1032.48 311.082 1028.9 318.062C1024.18 327.265 1026.3 340.708 1033.26 345.693L1035.08 347M1034.27 0L1027.41 17.3113C1025.06 23.2432 1025.83 30.8685 1029.25 35.4644C1032.26 39.5171 1033.26 46.0047 1031.73 51.6525L1029.72 59.1102C1027.59 67.0061 1028.89 76.0712 1033 81.9162C1037.17 87.851 1038.44 97.0935 1036.18 105.053L1032.38 118.463C1030.3 125.804 1031.01 134.274 1034.24 140.598L1034.81 141.724C1037.99 147.945 1038.73 156.251 1036.76 163.523L1031.61 182.569C1030.05 188.341 1031.02 194.973 1034.05 199.21C1037.48 204.021 1038.21 211.814 1035.81 217.885L1033.68 223.242C1030.99 230.021 1031.95 238.75 1035.95 243.842C1040.56 249.715 1041.03 260.201 1036.99 266.961L1036.18 268.311C1032.11 275.113 1032.11 285.472 1036.18 292.274L1037.62 294.674C1041.54 301.224 1041.78 311.082 1038.2 318.062C1033.49 327.265 1035.61 340.708 1042.57 345.693L1044.39 347M1043.58 0L1036.71 17.3113C1034.36 23.2432 1035.13 30.8685 1038.55 35.4644C1041.56 39.5171 1042.56 46.0047 1041.04 51.6525L1039.02 59.1102C1036.89 67.0061 1038.2 76.0712 1042.3 81.9162C1046.47 87.851 1047.74 97.0935 1045.49 105.053L1041.69 118.463C1039.61 125.804 1040.32 134.274 1043.54 140.598L1044.12 141.724C1047.29 147.945 1048.03 156.251 1046.07 163.523L1040.92 182.569C1039.36 188.341 1040.33 194.973 1043.35 199.21C1046.78 204.021 1047.52 211.814 1045.11 217.885L1042.99 223.242C1040.3 230.021 1041.26 238.75 1045.26 243.842C1049.87 249.715 1050.34 260.201 1046.29 266.961L1045.49 268.311C1041.42 275.113 1041.42 285.472 1045.49 292.274L1046.92 294.674C1050.84 301.224 1051.09 311.082 1047.51 318.062C1042.79 327.265 1044.91 340.708 1051.87 345.693L1053.69 347M1052.89 0L1046.02 17.3113C1043.67 23.2432 1044.44 30.8685 1047.86 35.4644C1050.87 39.5171 1051.87 46.0047 1050.34 51.6525L1048.33 59.1102C1046.2 67.0061 1047.5 76.0712 1051.61 81.9162C1055.78 87.851 1057.05 97.0935 1054.79 105.053L1051 118.463C1048.92 125.804 1049.62 134.274 1052.85 140.598L1053.42 141.724C1056.6 147.945 1057.34 156.251 1055.37 163.523L1050.22 182.569C1048.66 188.341 1049.63 194.973 1052.66 199.21C1056.09 204.021 1056.82 211.814 1054.42 217.885L1052.29 223.242C1049.6 230.021 1050.57 238.75 1054.56 243.842C1059.17 249.715 1059.64 260.201 1055.6 266.961L1054.79 268.311C1050.72 275.113 1050.72 285.472 1054.79 292.274L1056.23 294.674C1060.15 301.224 1060.39 311.082 1056.81 318.062C1052.1 327.265 1054.22 340.708 1061.18 345.693L1063 347" stroke="#F6FAFE" stroke-opacity="0.7" /> </g> </g> <defs> <clipPath id="clip0_1448_11566"> <rect width="1280" height="357" rx="24" fill="white" /> </clipPath> <clipPath id="clip1_1448_11566"> <rect width="125" height="429" fill="white" transform="matrix(-1 0 0 1 1160 50)" /> </clipPath> <clipPath id="clip2_1448_11566"> <rect width="98" height="190" fill="white" transform="matrix(1 0 0 -1 853 191)" /> </clipPath> <clipPath id="clip3_1448_11566"> <rect width="148" height="376" fill="white" transform="translate(951)" /> </clipPath> </defs> </svg> <?php else : ?> <?php endif; ?> </div> <script> document.addEventListener('click', function(e) { const el = e.target.closest('.conditions-check'); if (!el) return; const id = el.getAttribute('data-check-for'); if (!id) return; const input = document.getElementById(id); if (!input) return; input.checked = !input.checked; el.classList.toggle('is-checked', input.checked); }); </script> <?php do_action('woocommerce_after_customer_login_form'); ?>
💾 保存文件
← 返回文件管理器