Skip to content

Commit

Permalink
set font size - update account profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
c00kiemon5ter committed Jun 6, 2011
1 parent f2de866 commit 589ac1c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions static/css/screen.css
Expand Up @@ -2,6 +2,7 @@ body {
background: #4b4b4b url(/static/images/bg.gif) repeat-x 0 top;
text-align: center;
color: whitesmoke;
font-size: 12pt;
height: 100%;
width: 60em;
margin: 0 auto 0 auto;
Expand Down Expand Up @@ -167,6 +168,7 @@ ul.inline li {
#footer {
display: block;
font-family: monospace;
font-size: 9pt;
color: #AAA;
margin: 2em auto 2em auto;
border-top: 2px dotted #DDD;
Expand Down
8 changes: 8 additions & 0 deletions templates/accounts/profile.html
Expand Up @@ -2,6 +2,14 @@

{% block content %}
<div class="blockform">

<h2>Hi <span class="username">{{ user.username }}</span>,</h2>

{% if user.id == 1 %}
Go to <a href="/admin">admin page</a>
{% else %}
Don't forget to check your <a href="/messages/inbox/">mail</a>!
{% endif %}

</div>
{% endblock %}

0 comments on commit 589ac1c

Please sign in to comment.