Show sourcecode
The following files exists in this folder. Click to view.
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)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?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"); ?>