Beispiel #1
0
		
		</aside>
	</header>
	<nav>
		<?php 
build_breadcrumb($crumbs);
?>
	</nav>
	<section id="events">
		<article>
			<section>
				<fieldset id="signin">
					<legend>Select Your Account to Sign In</legend>
				<?php 
twitter_signin_button();
facebook_signin_button();
google_signin_button();
?>

				</fieldset>
			
				<p>
					Event submissions will be associated with the account you sign in with.<br />Sign in with that account again to update your events.
				</p>
			</section>
		</article>
		
		<aside>
	<?php 
mini_cal_month();
get_side();
Beispiel #2
0
/**
 * Output all available sign in buttons based on current settings.
 * @since 2.1.0
 * @version 2.1.0
 * @return void
 */
function signin_options()
{
    global $hc_cfg;
    if (!($hc_cfg[113] + $hc_cfg[114] + $hc_cfg[115]) > 0) {
        return -1;
    }
    twitter_signin_button();
    facebook_signin_button();
    google_signin_button();
}