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,30 @@
<div id="opalestate-user-form-popup" class="white-popup mfp-hide opalestate-mfp-popup tabl-simple-style">
<div class="opalestate-tab hr-mode">
<div class="nav opalestate-tab-head">
<a href="#o-login-form" class="tab-item"><?php esc_html_e( 'Login', 'opalestate-pro' ); ?></a>
<a href="#o-register-form" class="tab-item"><?php esc_html_e( 'Register', 'opalestate-pro' ); ?></a>
</div>
<div class="opalestate-tab-wrap">
<div class="opalestate-tab-content" id="o-login-form">
<?php
$atts = array(
'message' => '',
'redirect' => '',
'hide_title' => false
);
echo opalestate_load_template_path( 'user/login-form', $atts );
?>
</div>
<div class="opalestate-tab-content" id="o-register-form">
<?php
$atts = array(
'message' => '',
'redirect' => '',
'hide_title' => false
);
echo opalestate_load_template_path( 'user/register-form', $atts );
?>
</div>
</div>
</div>
</div>