website: frontend
This commit is contained in:
parent
9cb792240b
commit
67096dc68d
17 changed files with 165 additions and 44 deletions
|
|
@ -2,9 +2,9 @@ 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),
|
||||
path('', views.landing_page, name='landing_page'),
|
||||
path('encode', views.encode, name='encode'),
|
||||
path('encode/result', views.encode_result, name='encode_result'),
|
||||
path('decode', views.decode, name='decode'),
|
||||
path('decode/result', views.decode_result, name='decode_result'),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue