1. 환자 회원가입, 로그인 추가

2. 임직원 로그인 추가
3. 외래 or 입원, 건강검진 추가 예정
This commit is contained in:
mcutegs2
2020-06-25 16:57:40 +09:00
parent e55cee847a
commit 78e29d6686
22 changed files with 566 additions and 65 deletions

View File

@@ -0,0 +1,17 @@
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<jsp:include page="patientMenu.jsp" />
<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>
<!DOCTYPE html>
<html>
<head>
<title>로그인 성공</title>
</head>
<body>
<div align="center">
<div><h1>${requestScope.member.p_ID} 님 환영합니다</h1></div> <!-- u_ID -->
<div><br/></div>
</div>
</body>
</html>
<jsp:include page="tail.jsp" />