diff --git a/aurweb/routers/accounts.py b/aurweb/routers/accounts.py
index a9257d3d..4c4ce849 100644
--- a/aurweb/routers/accounts.py
+++ b/aurweb/routers/accounts.py
@@ -590,8 +590,8 @@ async def account(request: Request, username: str):
return render_template(request, "account/show.html", context)
-@router.get("/accounts/")
-@auth_required(True, redirect="/accounts/")
+@router.get("/accounts")
+@auth_required(True, redirect="/accounts")
@account_type_required({account_type.TRUSTED_USER,
account_type.DEVELOPER,
account_type.TRUSTED_USER_AND_DEV})
@@ -600,8 +600,8 @@ async def accounts(request: Request):
return render_template(request, "account/search.html", context)
-@router.post("/accounts/")
-@auth_required(True, redirect="/accounts/")
+@router.post("/accounts")
+@auth_required(True, redirect="/accounts")
@account_type_required({account_type.TRUSTED_USER,
account_type.DEVELOPER,
account_type.TRUSTED_USER_AND_DEV})
diff --git a/templates/account/search.html b/templates/account/search.html
index 3f83d25b..d28d4169 100644
--- a/templates/account/search.html
+++ b/templates/account/search.html
@@ -6,7 +6,7 @@
{{ "Use this form to search existing accounts." | tr }}
-