diff --git a/borgweb/borgweb/urls.py b/borgweb/borgweb/urls.py index 6a8a0a0..db47c5f 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('', include('django.contrib.auth.urls')), + path('accounts/', include('django.contrib.auth.urls')), path('admin/', admin.site.urls), path('', include('borg.urls')), ]