Django 유저 인증 시스템
·
프로그래밍/Back-end
참고: https://docs.djangoproject.com/ko/4.2/topics/auth/default/ Django The web framework for perfectionists with deadlines. docs.djangoproject.com 사용자 생성하기 >>> from django.contrib.auth.models import User >>> user = User.objects.create_user("john", "lennon@thebeatles.com", "johnpassword") # At this point, user is a User object that has already been saved # to the database. You can continue to chan..