diff --git a/borgweb/borgweb/urls.py b/borgweb/borgweb/urls.py index db47c5f..6a8a0a0 100644 --- a/borgweb/borgweb/urls.py +++ b/borgweb/borgweb/urls.py @@ -17,7 +17,7 @@ from django.contrib import admin from django.urls import include, path urlpatterns = [ - path('accounts/', include('django.contrib.auth.urls')), + path('', include('django.contrib.auth.urls')), path('admin/', admin.site.urls), path('', include('borg.urls')), ]