Origin commit

This commit is contained in:
Hoang Huu
2019-09-10 11:27:33 +07:00
commit 499e068e4f
844 changed files with 188705 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit();
}
?>
<div class="opalestate-social-login">
<ul class="opalestate-social-login__buttons">
<?php
if ( 'on' === opalestate_get_option( 'enable_facebook_login' ) ) {
echo '<li>' . opalestate_load_template_path( 'user/social-login/facebook-button' ) . '</li>';
}
?>
<?php
if ( 'on' === opalestate_get_option( 'enable_google_login' ) ) {
echo '<li>' . opalestate_load_template_path( 'user/social-login/google-button' ) . '</li>';
}
?>
</ul>
</div>