42 lines
2.0 KiB
Plaintext
42 lines
2.0 KiB
Plaintext
<%@ 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="u_ID" name="u_ID" class="form-control" placeholder="ID" required autofocus>
|
|
<label for="pw" class="sr-only">Password</label>
|
|
<input type="password" id="u_psw" name="u_psw" 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='UserReg.do'">임직원 가입하기</button>
|
|
<br/>
|
|
<a style="text-decoration: none" href="home.do">홈으로</a>
|
|
<p class="mt-5 mb-3 text-muted">© 2020-2020</p>
|
|
</form>
|
|
</body>
|
|
</html> |