-
Notifications
You must be signed in to change notification settings - Fork 1
/
update_before.jsp
56 lines (52 loc) · 1.82 KB
/
update_before.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="java.sql.*" %>
<%@ include file="top.jsp" %>
<%@ include file="dbconfig.jsp" %>
<div id="containerwrap">
<div id="container">
<div class="section_title">
<h1>
<span>회원 정보 수정</span>
</h1>
</div>
<div id="content" class="login">
<div class="login_box">
<form method="post" action="update.jsp">
<fieldset class="formLogin" align="center">
<div width="40%">
<h2>본인 확인을 위해 현재 비밀번호를 입력해주세요. </h2>
<table class="inputTable">
<%
if (session_id == null) {
%>
<script>
alert("로그인이 필요합니다.");
location.href = "login.jsp";
</script>
<%
} else { %>
<tbody>
<tr>
<td class="input"><input type="password" id="userpw"
name="userpw" title="비밀번호" class="formText formText_Pass"
onkeypress="if(event.keyCode=='13'){userLogin();}"
placeholder="비밀번호를 입력해주세요."/></td>
</tr>
<tr>
<td colspan="3" class="blank02"></td>
</tr>
<tr>
<td colspan="4" align="center"><input type="submit"
value="입력 완료"></td>
</tr>
</tbody>
</table>
</div>
</fieldset>
<% }
%>
</form>
</div>
</div>
</div>
<%@ include file="footer.jsp" %>