parent
47484b9622
commit
41a7350deb
|
|
@ -10,7 +10,7 @@
|
||||||
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
|
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
|
||||||
<input type="hidden" name="userid" value="${userVO.userid}"/>
|
<input type="hidden" name="userid" value="${userVO.userid}"/>
|
||||||
|
|
||||||
<table class="join_table">
|
<table class="table join_table">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th>아이디</th>
|
<th>아이디</th>
|
||||||
|
|
|
||||||
|
|
@ -3,15 +3,19 @@
|
||||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
||||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
<style>
|
||||||
|
.section_content{
|
||||||
|
width: 620px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<form:form commandName="userVO" name="updateForm" action="/map/userUpdate" id="updateForm" method="post">
|
<form:form commandName="userVO" name="updateForm" action="/map/userUpdate" id="updateForm" method="post">
|
||||||
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" />
|
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" />
|
||||||
<input type="hidden" name="userid" value="${userVO.userid}" />
|
<input type="hidden" name="userid" value="${userVO.userid}" />
|
||||||
<div class="section_content">
|
<div class="section_content ms-5">
|
||||||
<div class="join_top">
|
<div class="join_top">
|
||||||
<h2><span class="glyphicon glyphicon-edit"></span> 회원 정보 수정</h2>
|
<h2><span class="glyphicon glyphicon-edit"></span> 회원 정보 수정</h2>
|
||||||
</div>
|
</div>
|
||||||
<table class="join_table">
|
<table class="table join_table">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th>아이디</th>
|
<th>아이디</th>
|
||||||
|
|
@ -20,7 +24,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>비밀번호</th>
|
<th>비밀번호</th>
|
||||||
<td>
|
<td>
|
||||||
<p><label><input type="checkbox" id="changePw" /> 비밀번호 변경</<label></p>
|
<p><label><input type="checkbox" id="changePw" /> 비밀번호 변경</label></p>
|
||||||
<input type="password" class="form-control" id="password" name="password" value="" disabled="true" />
|
<input type="password" class="form-control" id="password" name="password" value="" disabled="true" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ $(document).on("click", ".statusTab", function () {
|
||||||
|
|
||||||
function fn_link_page(pageNo) {
|
function fn_link_page(pageNo) {
|
||||||
document.searchForm.pageIndex.value = pageNo;
|
document.searchForm.pageIndex.value = pageNo;
|
||||||
document.searchForm.action = "<c:url value='/admin/fieldData' />";
|
document.searchForm.action = "/admin/fieldData";
|
||||||
document.searchForm.submit();
|
document.searchForm.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ $(document).on('click', '.userInfoModalBtn', function () {
|
||||||
|
|
||||||
function fn_link_page(pageNo) {
|
function fn_link_page(pageNo) {
|
||||||
document.searchForm.pageIndex.value = pageNo;
|
document.searchForm.pageIndex.value = pageNo;
|
||||||
document.searchForm.action = "<c:url value='/admin/userInfo' />";
|
document.searchForm.action = "/admin/userInfo";
|
||||||
document.searchForm.submit();
|
document.searchForm.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue