Skip to content

Commit

Permalink
login and register options
Browse files Browse the repository at this point in the history
  • Loading branch information
mgallego committed Dec 27, 2012
1 parent caa5bd7 commit 70b57c7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
18 changes: 18 additions & 0 deletions src/SFM/PicmntBundle/Resources/public/stylesheets/picmnt.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,22 @@ h1 {
.comment-text {
margin-top: -10px;
padding-left: 2em;
}

#login-menu {
font-size: 0.8em;
margin-top: 2em;
text-align: right;
}

#login-menu ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}

#login-menu ul li {
display: inline;
float:right;
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@
{% endblock scripts %}

{% block header %}
<header class="grid_12">
<span class="picmnt-title"><a href="{{ path('home') }}" title="Picmnt">Picmnt</a></span>
<header class="container container_12">
<span class="grid_4 picmnt-title"><a href="{{ path('home') }}" title="Picmnt">Picmnt</a></span>
<span id="login-menu" class="grid_8">
<ul>
<li><a href="{{ path('fos_user_security_login') }}">{{ 'Login' | trans }}</a></li>
<li>&nbsp|&nbsp</li>
<li><a href="{{ path('fos_user_registration_register') }}">{{ 'Join' | trans }}</a></li>
</ul>
</span>
</header>
{% endblock header %}
{% block menu %}{% endblock menu %}
Expand Down

0 comments on commit 70b57c7

Please sign in to comment.