pella logo
Temperatur i Norrköping just nu:
Click for Norrköping, Sweden Forecast

Show sourcecode

The following files exists in this folder. Click to view.

public_html/

3kolumn.php
img/
incl/
index.php
login.php
pella1.php
sida1.php
src/
style/
style.php
test.php
viewsource.php

login.php

60 lines UTF-8 Windows (CRLF)
<?php 
include("incl/config.php");
$pageId "login";
$title "login";

/* Det här är "huvudsidan", multisidan som ligger i rotmappen pella.*/
// Check if the url contains a querystring with a page-part.
$p null;
if(isset(
$_GET["p"])) 
{
  
$p $_GET["p"];
}


// Is the action a known action?
$content null;
$output null;
if(
$p == "login"
{
  
$pageTitle "Logga in";
  
$content userLogin();
}
else if (
$p == "logout"
{
  
$pageTitle "Logga ut";
  
$content userLogout();

else
{
  
$pageTitle "Status login / logout";
}

?>


<?php include("incl/header.php"); ?>
<div id="content">
  <div class="left border" style="width:80%;">

    <?php if(isset($content)):
      echo 
$content;
    else: 
?> 
      <h1>Status login / logout</h1>
      <p>Denna webbplats har skyddade delar. Du måste logga in för att komma åt dem.</p>
      <p>För tillfället är du: 
      <?php if(userIsAuthenticated()): ?>
        <strong>inloggad</strong>.</p>
        <p><a href="?p=logout">Vill du logga ut</a>?</p>
      <?php else: ?>
        <strong>ej inloggad</strong>.</p>
        <p><a href="?p=login">Vill du logga in</a>?</p>
      <?php endif; ?>  
    <?php endif; ?>

    <hr>
  </div>
</div>
<?php include("incl/footer.php"); ?>