Moved login prompt and welcome msg together into one line.

This commit is contained in:
Marcus Scholz 2020-08-04 23:33:51 +02:00
parent 74032b7460
commit 284302e3dc

View File

@ -10,7 +10,7 @@
{% block title %}Urban Exploration{% endblock %}
</title>
</head>
<body>
<header class="LP-Header">
<div class="LP-Header__Logo">
@ -24,7 +24,7 @@
Hi {{ user.username }}!
<a class="LP-Link" href="{% url 'logout' %}"><span class="LP-Link__Text">logout</span></a>
{% else %}
<p>Du bist nicht eingeloggt.</p>
Du bist nicht eingeloggt.
<a class="LP-Link" href="{% url 'login' %}"><span class="LP-Link__Text">login</span></a> |
<a class="LP-Link" href="{% url 'signup' %}"><span class="LP-Link__Text">signup</span></a>
{% endif %}