wcs: add back user name to header

This commit is contained in:
Frédéric Péters 2013-10-28 10:59:15 +01:00
parent c1d83a8a06
commit d02a29e376
2 changed files with 12 additions and 0 deletions

View File

@ -38,6 +38,9 @@ div#centre { padding-top: 45px; margin-top: 0px; }
<span class="login"><a href="[root_url]login/">Connexion</a> / <a href="[root_url]register/">Inscription</a></span>
[end]
</div>
[if-any user]
<div id="username">[session_user_display_name]</div>
[end]
</div>
</div> <!-- header -->

View File

@ -214,6 +214,15 @@ hr.clear {
background: #f68423;
}
div#username {
float: right;
padding: 5px 5px 5px 5px;
background: white;
line-height: 20px;
height: 22px;
border: 1px solid white;
}
div#footer {
clear: both;
position: relative;