30. 프로필 페이지
서버 측 작업urls.pyurlpatterns = [ path('login/', views.custom_login, name='login'), path('logout/', auth_views.LogoutView.as_view(), name='logout'), path('signup/', views.signup, name='signup'), path('profile//', views.profile, name='profile'), ...]member/views.pydef profile(request, user_p..