[Django] 로그인(1) 로그인, 로그아웃
# Django Authentication System 사용자 인증과 관련된 기능을 모아 놓은 시스템 이 기능을 통해, 로그인 / 로그아웃을 구현할 수 있다. # 사전 작업 0. https://memezz.tistory.com/24에서 작성한 프로젝트에서 이어집니다.. 1. 'accounts' app생성 django 내부에서 쓰이는 함수에서도 accounts라는 이름으로 사용되기 때문에 app이름은 accounts로 하는 것이 권장됨 # accounts/urls.py from django.urls import path from . import views app_name = 'accounts' urlpatterns = [ ] # crud/urls.py # 프로젝트 urls에도 경로 추가 urlpattern..