Authentication

    django 15. Authentication 인증시스템 구축

    ※ Point 자신의 user페이지가 아닌 다른 user URL로 접근 가능한 문제 발생 아무나 접근 할 수 없도록 인증하는 Account app 생성함 Decolator 미사용 했을 경우의 인증 과정 views.py from django.contrib.auth.forms import UserCreationForm from django.contrib.auth.models import User from django.http import HttpResponseRedirect, HttpResponseForbidden from django.shortcuts import render # Create your views here. from django.urls import reverse, reverse_lazy f..