Skip to content

Instantly share code, notes, and snippets.

@manjurulhoque
Created March 30, 2019 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manjurulhoque/36358e6338c0dc3cd2187203021c5712 to your computer and use it in GitHub Desktop.
Save manjurulhoque/36358e6338c0dc3cd2187203021c5712 to your computer and use it in GitHub Desktop.
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