File manager - Edit - /home/theblueo/tv/fb4e3b/auth.tar
Back
form-login.php 0000666 00000004121 15214053646 0007336 0 ustar 00 <?php /** * Auth form login * * This template can be overridden by copying it to yourtheme/woocommerce/auth/form-login.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates/Auth * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <?php do_action( 'woocommerce_auth_page_header' ); ?> <h1><?php printf( __( '%s would like to connect to your store' , 'woocommerce' ), esc_html( $app_name ) ); ?></h1> <?php wc_print_notices(); ?> <p><?php printf( __( 'To connect to %1$s you need to be logged in. Log in to your store below, or %2$scancel and return to %1$s%3$s', 'woocommerce' ), wc_clean( $app_name ), '<a href="' . esc_url( $return_url ) . '">', '</a>' ); ?></p> <form method="post" class="wc-auth-login"> <p class="form-row form-row-wide"> <label for="username"><?php _e( 'Username or email address', 'woocommerce' ); ?> <span class="required">*</span></label> <input type="text" class="input-text" name="username" id="username" value="<?php echo ( ! empty( $_POST['username'] ) ) ? esc_attr( $_POST['username'] ) : ''; ?>" /> </p> <p class="form-row form-row-wide"> <label for="password"><?php _e( 'Password', 'woocommerce' ); ?> <span class="required">*</span></label> <input class="input-text" type="password" name="password" id="password" /> </p> <p class="wc-auth-actions"> <?php wp_nonce_field( 'woocommerce-login' ); ?> <input type="submit" class="button button-large button-primary wc-auth-login-button" name="login" value="<?php esc_attr_e( 'Login', 'woocommerce' ); ?>" /> <input type="hidden" name="redirect" value="<?php echo esc_url( $redirect_url ); ?>" /> </p> </form> <?php do_action( 'woocommerce_auth_page_footer' ); ?> footer.php 0000666 00000001307 15214053646 0006566 0 ustar 00 <?php /** * Auth footer * * This template can be overridden by copying it to yourtheme/woocommerce/auth/footer.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates/Auth * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> </div> </body> </html> form-grant-access.php 0000666 00000003533 15214053646 0010606 0 ustar 00 <?php /** * Auth form grant access * * This template can be overridden by copying it to yourtheme/woocommerce/auth/form-grant-access.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates/Auth * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <?php do_action( 'woocommerce_auth_page_header' ); ?> <h1><?php printf( __( '%s would like to connect to your store' , 'woocommerce' ), esc_html( $app_name ) ); ?></h1> <?php wc_print_notices(); ?> <p><?php printf( __( 'This will give "%s" <strong>%s</strong> access which will allow it to:' , 'woocommerce' ), esc_html( $app_name ), esc_html( $scope ) ); ?></p> <ul class="wc-auth-permissions"> <?php foreach ( $permissions as $permission ) : ?> <li><?php echo esc_html( $permission ); ?></li> <?php endforeach; ?> </ul> <div class="wc-auth-logged-in-as"> <?php echo get_avatar( $user->ID, 70 ); ?> <p><?php printf( __( 'Logged in as %s', 'woocommerce' ), esc_html( $user->display_name ) ); ?> <a href="<?php echo esc_url( $logout_url ); ?>" class="wc-auth-logout"><?php _e( 'Logout', 'woocommerce' ); ?></a> </div> <p class="wc-auth-actions"> <a href="<?php echo esc_url( $granted_url ); ?>" class="button button-primary wc-auth-approve"><?php _e( 'Approve', 'woocommerce' ); ?></a> <a href="<?php echo esc_url( $return_url ); ?>" class="button wc-auth-deny"><?php _e( 'Deny', 'woocommerce' ); ?></a> </p> <?php do_action( 'woocommerce_auth_page_footer' ); ?> header.php 0000666 00000002607 15214053646 0006524 0 ustar 00 <?php /** * Auth header * * This template can be overridden by copying it to yourtheme/woocommerce/auth/header.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates/Auth * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta name="viewport" content="width=device-width" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="robots" content="noindex, nofollow" /> <title><?php _e( 'Application Authentication Request', 'woocommerce' ); ?></title> <?php wp_admin_css( 'install', true ); ?> <link rel="stylesheet" href="<?php echo esc_url( str_replace( array( 'http:', 'https:' ), '', WC()->plugin_url() ) . '/assets/css/auth.css' ); ?>" type="text/css" /> </head> <body class="wc-auth wp-core-ui"> <h1 id="wc-logo"><img src="<?php echo WC()->plugin_url(); ?>/assets/images/woocommerce_logo.png" alt="WooCommerce" /></h1> <div class="wc-auth-content">
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings