1. 환자 회원가입, 로그인 추가
2. 임직원 로그인 추가 3. 외래 or 입원, 건강검진 추가 예정
This commit is contained in:
65
hospital/src/main/webapp/UserList.jsp
Normal file
65
hospital/src/main/webapp/UserList.jsp
Normal file
@@ -0,0 +1,65 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||||
pageEncoding="UTF-8"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<!DOCTYPE html>
|
||||
<jsp:include page="menu.jsp" />
|
||||
<html>
|
||||
<head>
|
||||
<title>Title</title>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div class="col-md-6">
|
||||
<br/>
|
||||
<h1 class="text-center">회원 리스트</h1>
|
||||
<br/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div class="col-12">
|
||||
<table id="tb" class="table table-hover">
|
||||
<c:choose>
|
||||
<c:when test="${empty members}">
|
||||
<tr>
|
||||
<td colspan="6" align="center"> 데이터가 없습니다.</td>
|
||||
</tr>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
<th scope="col">아이디</th>
|
||||
<th scope="col">이름</th>
|
||||
<th scope="col">주소</th>
|
||||
<th scope="col">전화</th>
|
||||
<th scope="col">성별</th>
|
||||
<th scope="col">차량번호</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach items="${members}" var = "member">
|
||||
<tr>
|
||||
<td>${member.u_ID}</td>
|
||||
<td>${member.u_name}</td>
|
||||
<td>${member.u_addr}</td>
|
||||
<td>${member.u_phone}</td>
|
||||
<td>${member.u_gender}</td>
|
||||
<td>${member.u_car_num}</td>
|
||||
</tr>
|
||||
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<jsp:include page="tail.jsp" />
|
||||
Reference in New Issue
Block a user