-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserInfo.jsp
More file actions
36 lines (24 loc) · 1.04 KB
/
userInfo.jsp
File metadata and controls
36 lines (24 loc) · 1.04 KB
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
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>사용자 상세정보</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2 class="text-center">사용자 상세정보</h2>
<table class="table table-bordered table table-hover">
<tr><td>아이디 :</td><td>${user.userId}</td></tr>
<tr><td>이름 :</td><td>${user.name}</td></tr>
<tr><td>성별 :</td><td>${user.gender}</td></tr>
<tr><td>거주지 :</td><td>${user.city}</td></tr>
</table>
</div>
</body>
</html>