Created
March 30, 2019 14:59
-
-
Save manjurulhoque/36358e6338c0dc3cd2187203021c5712 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.urls import path | |
from . import views | |
app_name = 'accounts' | |
urlpatterns = [ | |
path('login', views.Login.as_view(), name='login'), | |
path('register', views.Register.as_view(), name='register'), | |
path('logout', views.LogoutView.as_view(), name='logout'), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment