Some design

This commit is contained in:
Skia 2016-07-17 11:37:52 +02:00
parent 4498877283
commit 14595936e2
2 changed files with 4 additions and 4 deletions

View File

@ -9,8 +9,8 @@ button,
textarea
{
margin: 0;
border: 0;
padding: 0;
border: 1px solid;
padding: 4px;
display: inline-block;
vertical-align: middle;
white-space: normal;

View File

@ -16,8 +16,8 @@
{% block header %}
<header>
{% if not user.is_authenticated() %}
<a href="{{ url('core:register') }}">Register</a> |
<a href="{{ url('core:login') }}">Login</a>
<a href="{{ url('core:login') }}">Login</a> |
<a href="{{ url('core:register') }}">Register</a>
{% else %}
<a href="{{ url('core:user_profile', user_id=user.id) }}">{{ user.get_display_name() }}</a> |
<a href="{{ url('core:user_tools') }}">Tools</a> |