init account app

This commit is contained in:
2023-10-24 13:56:16 +02:00
parent 80c81dadaf
commit 5fea6457da
5 changed files with 22 additions and 3 deletions

View File

@ -1,3 +1,3 @@
from django.db import models
# Create your models here.
# Create your models here.

View File

@ -0,0 +1,9 @@
from django.urls import path
from . import views
urlpatterns = [
path("login", views.Login.as_view(), name="login"),
path("create", views.Create.as_view(), name="create"),
path("delete", views.Delete.as_view(), name="delete"),
]

View File

@ -1,3 +1,12 @@
from django.shortcuts import render
from django.views import View
# Create your views here.
class Login(View):
pass
class Create(View):
pass
class Delete(View):
pass