website: add empty pages

This commit is contained in:
Oliver Gaskell 2025-11-01 12:55:24 +00:00
parent f1afe22bac
commit 635146c901
No known key found for this signature in database
GPG key ID: F971A08925FCC0AD
8 changed files with 79 additions and 2 deletions

View file

@ -1 +1,10 @@
urlpatterns = []
from django.urls import path
from . import views
urlpatterns = [
path('', views.landing_page),
path('encode', views.encode),
path('encode/result', views.encode_result),
path('decode', views.decode),
path('decode/result', views.decode_result),
]