summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-10 03:17:56 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-10 03:17:56 +0000
commit8858b957b05f9673ed29b6ad941cbeaefd29cd13 (patch)
tree8f49449a575e065e1adac29270ebf3c4d0730dcf /themes
parent5e385398f00cd77ced7b91892c02c8c97db0848e (diff)
The start of the login functionality. It shows the login popup but doesn't do anything else. Just got tire of my changes being clobbered :-)
Diffstat (limited to 'themes')
-rw-r--r--themes/default/views/header.html.php30
1 files changed, 13 insertions, 17 deletions
diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php
index 6aa3f410..264c8fa4 100644
--- a/themes/default/views/header.html.php
+++ b/themes/default/views/header.html.php
@@ -1,29 +1,25 @@
<? defined("SYSPATH") or die("No direct script access."); ?>
-<img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
+ <img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
+ <h1><?= $item->title_edit ?></h1>
+ <?= $login ?>
-<h1><?= $item->title_edit ?></h1>
-
-<div id="gLoginMenu">
- <a href="#"><?= _("Register") ?></a> |
- <a href="#"><?= _("Login") ?></a>
-</div>
-
-<ul id="gSiteMenu">
+ <ul id="gSiteMenu">
<li><a href="index.php"><?= _("HOME") ?></a></li>
<li><a class="active" href="index.php/album/1"><?= _("BROWSE") ?></a></li>
<li><a href="#"><?= _("UPLOAD") ?></a></li>
<li><a href="#"><?= _("MY GALLERY") ?></a></li>
- <li><a href="#"><?= _("ADMIN") ?></a></li>
-</ul>
+ <li><a href="#"><?= _("ADMIN") ?></a></li>
+ </ul>
<form id="gSearchForm">
<input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/>
<input type="submit" class="submit" value="search" />
</form>
-<ul id="gBreadcrumbs">
- <? foreach ($parents as $parent): ?>
- <li><a href="<?= url::site("album/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li>
- <? endforeach ?>
- <li class="active"><?= $item->title_edit ?></li>
-</ul>
+ <ul id="gBreadcrumbs">
+ <? foreach ($parents as $parent): ?>
+ <li><a href="<?= url::site("album/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li>
+ <? endforeach ?>
+ <li class="active"><?= $item->title_edit ?></li>
+ </ul>
+