Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion evoks/theme/templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h2 class="mt-6 text-center text-3xl font-extrabold text-gray-900">
</h2>
<p class="mt-2 text-center text-sm text-gray-600">
or
<a href="/signup" class="font-medium text-regal-blue hover:text-gray-500">
<a href="{% url 'signup' %}" class="font-medium text-regal-blue hover:text-gray-500">
create account
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion evoks/theme/templates/reset_password_complete.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
Your password has been set! You can login to your account.
</p>
<div class="text-center mt-3">
<a href="/login" class="font-medium text-regal-blue hover:text-gray-500">
<a href="{% url 'login' %}" class="font-medium text-regal-blue hover:text-gray-500">
Login
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion evoks/theme/templates/teams.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h1 class="text-2xl font-semibold text-gray-900">Teams Dashboard</h1>
<div class="flex items-center">
<div class="ml-4">
<div class="text-sm text-gray-900">
<a href="/teams/{{team.name}}">
<a href="{% url 'teams' team.name %}">
{{team.name}}
</a>
</div>
Expand Down
Loading