1. 임직원 로그인 페이지 추가

2. 환자 로그인, 회원가입 페이지 추가
This commit is contained in:
mcutegs2
2020-06-10 16:59:30 +09:00
parent ab54be7072
commit d902a4a65a
9 changed files with 262 additions and 8 deletions

View File

@@ -0,0 +1,42 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>병원 관리 시스템</title>
<!-- Bootstrap core CSS -->
<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>
<!-- Custom styles for this template -->
<link href="css/signin.css" rel="stylesheet">
</head>
<body class="text-center">
<h1>A 병원</h1>
<form class="form-signin" action="loginCheck.do" method="post">
<img class="mb-4" src="img/google_icon.png" alt="" width="100" height="100">
<h1 class="h3 mb-3 font-weight-normal">임직원 로그인</h1>
<label for="id" class="sr-only">Email address</label>
<input type="text" id="id" name="id" class="form-control" placeholder="ID" required autofocus>
<label for="pw" class="sr-only">Password</label>
<input type="password" id="pw" name="pw" class="form-control" placeholder="Password" required>
<div class="checkbox mb-3">
<label>
<input type="checkbox" value="remember-me"> Remember me
</label>
</div>
<button class="btn btn-UserLogin btn-primary btn-block" type="submit">임직원 로그인</button>
<button class="btn btn-UserJoin btn-primary btn-block" onclick="location.href='UserJoin.do'">임직원 가입하기</button>
<br/>
<a style="text-decoration: none" href="home.do">홈으로</a>
<p class="mt-5 mb-3 text-muted">&copy; 2020-2020</p>
</form>
</body>
</html>