2017-04-21 12:05:44 +00:00
|
|
|
<?php defined( 'ABSPATH' ) or exit(); ?>
|
|
|
|
|
2017-04-26 15:36:20 +00:00
|
|
|
<h2><?php _e( 'Your Account', 'woocommerce' ); ?></h2>
|
2017-04-21 12:05:44 +00:00
|
|
|
|
|
|
|
<div class="connect-wrapper">
|
|
|
|
<div class="connected">
|
|
|
|
<?php echo get_avatar( $auth_user_data['email'], 100 ); ?>
|
|
|
|
<p>
|
2017-04-26 15:36:20 +00:00
|
|
|
<?php /* translators: %s: connected user e-mail */ ?>
|
|
|
|
<?php printf( __( 'Connected as:<br /> <strong>%s</strong>', 'woocommerce' ), esc_html( $auth_user_data['email'] ) ); ?>
|
2017-04-21 12:05:44 +00:00
|
|
|
<span class="buttons">
|
2017-04-26 15:36:20 +00:00
|
|
|
<a class="button" href="<?php echo esc_url( $refresh_url ); ?>"><?php _e( 'Refresh', 'woocommerce' ); ?></a>
|
|
|
|
<a class="button" href="<?php echo esc_url( $disconnect_url ); ?>"><?php _e( 'Disconnect', 'woocommerce' ); ?></a>
|
2017-04-21 12:05:44 +00:00
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|