1
0
Fork 0
git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@27 a67ec6bc-e5d5-0310-a910-815c51eb3124
This commit is contained in:
Jan Dittberner 2003-12-20 14:36:28 +00:00
parent 2b0cbdf707
commit 056a13699e
7 changed files with 43 additions and 12 deletions

View file

@ -22,24 +22,24 @@ if (pg_num_rows($result) == 0) {
}
pg_close($dbh);
include("commonhead.php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>GNU-Viech Administration tool</title>
</head>
<body>
<div>
<?php
if (! $logged_in) {
echo _("You're not known to the system.")."<br/>";
echo _("Please go back and try again.");
print("<p>" . _("You're not known to the system.") . "<br/>");
print(_("Please go back and try again.") . "</p>");
} else {
include("userhead.php");
// echo _("Session with ID: ").session_id()."<br/>";
// echo _("UID: ").$_SESSION["userid"]."<br/>";
print("<p>");
printf(_("You may now see your <a href=\"%s\">Domain list</a>."),
"domainlist.php");
print("</p>");
}
?>
</body>
</html>
</div>
<?php
include("commonfoot.php");
?>