From 327e2aa536c4064dd8ae3a71bf6fde4fd56bbb3f Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Mon, 29 Jul 2024 15:55:42 +0900 Subject: [PATCH] =?UTF-8?q?UserControl=20=EB=B3=80=EA=B2=BD:=20class=20->?= =?UTF-8?q?=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp/WEB-INF/jsp/base/user/password.jsp | 2 +- .../WEB-INF/jsp/base/user/select-user.jsp | 113 ++++++++------- .../WEB-INF/jsp/base/user/user-info.jsp | 40 ++---- .../WEB-INF/jsp/base/user/user-main.jsp | 131 +++++++++--------- src/main/webapp/WEB-INF/jsp/include/top.jsp | 10 +- src/main/webapp/WEB-INF/jsp/index.jsp | 2 +- 6 files changed, 140 insertions(+), 158 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/base/user/password.jsp b/src/main/webapp/WEB-INF/jsp/base/user/password.jsp index b724e81..1e1c626 100644 --- a/src/main/webapp/WEB-INF/jsp/base/user/password.jsp +++ b/src/main/webapp/WEB-INF/jsp/base/user/password.jsp @@ -37,7 +37,7 @@ function changePassword() { return false; } - return currentUserControl.changePassword({ + return currentUserCtrl.changePassword({ userIDs: "${currentUser.id}", currentPassword: passwords[0].value, password: passwords[1].value diff --git a/src/main/webapp/WEB-INF/jsp/base/user/select-user.jsp b/src/main/webapp/WEB-INF/jsp/base/user/select-user.jsp index 991aa40..45081a3 100644 --- a/src/main/webapp/WEB-INF/jsp/base/user/select-user.jsp +++ b/src/main/webapp/WEB-INF/jsp/base/user/select-user.jsp @@ -1,51 +1,50 @@ <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%> <%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> 사용자 - -
+