Beispiel #1
0
require_once 'inc/functions/forms.php';
?>

<div class="pure-g">
	<div class="pure-u-1-2">
		<div class="l-box">
			<h1 class="title">simpson</h1>

			<p>a <em>simp</em>le <em>so</em>cial <em>n</em>etwork</p>

			<p>Hello world! Insert some kind of message here, such as "welcome to my awesome site", "simpson
				is the leading provider of social networks worldwide", and other blatant lies.</p>

			<?php 
renderLoginForm();
?>

		</div>
	</div>
	<div class="pure-u-1-2">
		<div class="l-box text-center">

			<?php 
if (isLoggedIn()) {
    echo '<div class="panel">';
    echo '<h2>Hi <a href="?p=profile&id=' . $_SESSION['userId'] . '">' . $_SESSION['firstName'] . '</a>!';
    echo '</h2><p><em>insert actions/notices here</em></p><p><a href="session.php?logout">log out</a></p>';
    echo '</div>';
} else {
    renderRegisterForm();
Beispiel #2
0
function show_login()
{
    include _DOCROOT . '/modules/site/site-templates.php';
    ob_start();
    renderLoginForm();
    $htmlBack = ob_get_contents();
    ob_end_clean();
    echo json_encode(array('vbox' => $htmlBack));
}