Skip to content

Commit

Permalink
Convert login button to an actual button
Browse files Browse the repository at this point in the history
  • Loading branch information
pehala committed Jan 12, 2024
1 parent 4bcd7df commit 49cf4e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/templates/base/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
{% if user.is_authenticated %}
<span class="navbar-text ms-2 me-4">{% trans "Logged as" %} <b>{{ user.username }}</b></span>
{% else %}
<a class="me-4 ms-1 custom-link link-underline link-underline-opacity-0 link-underline-opacity-75-hover" href="{% url 'login' %}" role="button">{% trans "Log in" %}</a>
<a class="me-4 ms-1 custom-link btn border-primary" href="{% url 'login' %}" role="button">{% trans "Log in" %}</a>
{% endif %}

</div>
Expand Down

0 comments on commit 49cf4e2

Please sign in to comment.