Add first info to landing page

This commit is contained in:
2025-10-23 12:35:52 +02:00
parent f6e69b1521
commit 81929cca21
11 changed files with 186 additions and 57 deletions

View File

@@ -6,7 +6,6 @@ def test_unauthorized_access(unauthorized_client):
assert response.status_code == 401
def test_unauthorized_access(unauthorized_client):
response = unauthorized_client.get("/")
print(response.text)
assert response.status_code == 401
def test_authorized_access(client):
response = client.get("/")
assert response.status_code == 200