Skip to content

Commit

Permalink
enhance navbar login / logout 1363
Browse files Browse the repository at this point in the history
  • Loading branch information
jh-RLI committed Nov 20, 2024
1 parent ee4f036 commit 442bc85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/templates/base/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@
{% if ACCOUNT_ALLOW_REGISTRATION %}
{# URL provided by django-allauth/account/urls.py #}
<a href="{% url 'account_signup' %}"
class="text-gray-300 hover:bg-gray-700 hover:text-white rounded-md px-3 py-2 text-sm font-medium">{% translate "Sign Up" %}</a>
class="btn btn-info btn-sm m-1">{% translate "Sign Up" %}</a>
{% endif %}
{# URL provided by django-allauth/account/urls.py #}
<a class="btn btn-info" style="float: right;margin:5px" href="{% url 'account_login' %}">{% translate "Sign In" %}</a>
<a class="btn btn-info btn-sm m-1" href="{% url 'account_login' %}">{% translate "Sign In" %}</a>
{% endif %}
</div>
</nav>

0 comments on commit 442bc85

Please sign in to comment.