1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-01 10:29:14 +00:00

display username in header

This commit is contained in:
Andrew Dolgov
2005-11-17 19:29:13 +01:00
parent 0cc89acb29
commit c93f38c494
5 changed files with 23 additions and 6 deletions

View File

@@ -6,6 +6,9 @@
require_once "db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
$_SESSION["uid"] = PLACEHOLDER_UID; // FIXME: placeholder
$_SESSION["name"] = PLACEHOLDER_NAME;
?>
<html>
<head>
@@ -40,12 +43,14 @@
<tr>
<td colspan="2">
<table cellspacing="0" cellpadding="0" width="100%"><tr>
<td class="header" valign="middle">
<td rowspan="2" class="header" valign="middle">
<img src="images/ttrss_logo.png" alt="logo">
</td>
<td align="right" valign="top">
<div id="notify"><span id="notify_body"></div>
</td>
</tr><tr><td class="welcomePrompt">
Hello, <b><?= $_SESSION["name"] ?></b> (<a href="logout.php">Logout</a>)</td>
</tr></table>
</td>
</tr>