https://coding-dahee.tistory.com/63 오류 장고에서 제공하는 함수 이용! http method 왜 정보를 주고 받는데에 method를 나누냐? get : 데이터 조회, 데이터가 url에 뜬다 post : 데이터 생성, 노출 x put : 데이터 수정 delete : 데이터 삭제 ================실습 blogproject에서 진행함. 1) accounts라는 앱 만들기python manage.py startapp accounts 2) project의 settings.py에서 INSTALLED_APPS = [ 'accounts.apps.AccountsConfig', 3) app 안에 templates 폴더 만들어주고 4) 그 안에 login.html, signup.ht..