add register, login, logout views

This commit is contained in:
Matteo Rosati
2026-02-11 11:53:06 +01:00
parent 160a8bf020
commit 6bce72e866
13 changed files with 402 additions and 3 deletions

View File

@@ -2,4 +2,7 @@ from django.apps import AppConfig
class FrontendConfig(AppConfig):
name = 'frontend'
name = "frontend"
def ready(self) -> None:
from . import models # noqa: F401