Ejemplo n.º 1
0
<?php

/**
 * Template name: Sign
 */
$tabs = theme_custom_sign::get_tabs();
$tab_active = get_query_var('tab');
if (!isset($tabs[$tab_active])) {
    $tab_active = 'login';
}
$redirect = get_query_var('redirect');
$avatar = theme_custom_sign::get_options('avatar-url');
/** log in html */
$i_have_account_html = function () {
    ?>
	<div class="g-phone-1-2">
		<a class="btn btn-default btn-block" href="<?php 
    echo theme_custom_sign::get_tabs('login')['url'];
    ?>
#main">
			<i class="fa fa-<?php 
    echo theme_custom_sign::get_tabs('login')['icon'];
    ?>
 fa-fw"></i>
			<?php 
    echo ___('I have account');
    ?>
		</a>
	</div>
	<?php 
};