summaryrefslogtreecommitdiff
path: root/static/website/templates/navbar.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/website/templates/navbar.html')
-rw-r--r--static/website/templates/navbar.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/static/website/templates/navbar.html b/static/website/templates/navbar.html
index 1f2ac32..001fce8 100644
--- a/static/website/templates/navbar.html
+++ b/static/website/templates/navbar.html
@@ -42,20 +42,20 @@
<li><a href="{% url 'website:cfp' %}">cfp</a></li>
{% if user.is_authenticated %}
<li class="dropdown">
- <a class="dropdown-toggle" data-toggle="dropdown" href="{% url 'auth_views:login' %}" >
+ <a class="dropdown-toggle" data-toggle="dropdown" href="{% url 'auth:login' %}" >
<i class="fa fa-user" aria-hidden="true"></i>
{{ user.username }}!<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="{% url 'website:proposal' %}">Submit your Paper</a></li>
<li><a href="{{SITE_URL}}/#registration">Book your Ticket</a></li>
- <li><a href="{% url 'auth_views:logout' %}?next=/"><i class="fa fa-sign-out"></i>&nbsp;Logout</a></li>
+ <li><a href="{% url 'auth:logout' %}?next=/"><i class="fa fa-sign-out"></i>&nbsp;Logout</a></li>
</ul>
</li>
{% else %}
- <li><a href="{% url 'auth_views:login' %}">Login</a></li>
+ <li><a href="{% url 'auth:login' %}">Login</a></li>
{% endif %}
</ul>
</div>