diff options
| author | Simon | 2011-03-09 18:47:52 +0100 |
|---|---|---|
| committer | Simon | 2011-03-09 18:47:52 +0100 |
| commit | cf9512180bcdbdbec5c7cd2ed3d053d7e432cf2a (patch) | |
| tree | 5986e90fefa97b464f5623c5c6f6ab005657c7dd | |
| parent | Testen der Filter mit Dummywerten über Formular möglich (diff) | |
| download | pbs2-cf9512180bcdbdbec5c7cd2ed3d053d7e432cf2a.tar.gz pbs2-cf9512180bcdbdbec5c7cd2ed3d053d7e432cf2a.tar.xz pbs2-cf9512180bcdbdbec5c7cd2ed3d053d7e432cf2a.zip | |
style angepasst
| -rw-r--r-- | application/layouts/main.phtml | 9 | ||||
| -rw-r--r-- | public/media/css/style.css | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/application/layouts/main.phtml b/application/layouts/main.phtml index 9ad6122..483d267 100644 --- a/application/layouts/main.phtml +++ b/application/layouts/main.phtml @@ -32,7 +32,14 @@ echo $this->headScript()."\n"; </div> <div id='innerwrapper'> <?php echo $this->layout()->content; ?> - <div class='clear'></div> + <div class='clear footer'><?php +if (Zend_Auth::getInstance()->hasIdentity()) { + //TODO: Display Auth info + // echo "<b>angemeldet</b>"; + // echo " - <a href='/auth/logout'>logout</a>"; +} +?></div> </div> </div> + </body></html> diff --git a/public/media/css/style.css b/public/media/css/style.css index 6fe0906..345ba12 100644 --- a/public/media/css/style.css +++ b/public/media/css/style.css @@ -11,7 +11,7 @@ margin:10px auto; #innerwrapper { font-family:verdana, arial; -padding:20px; +padding:20px 20px 0px 20px; } #logo { @@ -127,3 +127,4 @@ tr td.action{ } td.action img{border:none;} .clear{clear:both;} +.footer{text-align:right;font-size:10px;font-family:Verdana, Arial;padding:10px 0px 10px 0px;} |
