base_project/src/main/webapp/publish/adm/login/login.html
2025-12-03 17:54:34 +09:00

73 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>로그인</title>
<!-- css -->
<link rel="stylesheet" href="../../../css/reset.css">
<link rel="stylesheet" href="../../../css/font.css">
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/style.css">
<link rel="stylesheet" href="../css/button.css">
<link rel="stylesheet" href="../css/tab.css">
<link rel="stylesheet" href="../css/table.css">
<link rel="stylesheet" href="../css/calendar.css">
<link rel="stylesheet" href="../login/login.css" />
<!-- //css -->
<!-- script -->
<script src="../../../js/jquery-3.5.0.js"></script>
<!-- //script -->
</head>
<body>
<div class="login_container">
<div class="login_content">
<div class="left">
<h1 class="logo"><img src="" alt="">logo</h1>
</div>
<div class="right">
<div class="login_form_wrap">
<h2>로그인</h2>
<ul class="login_form">
<li>
<strong>아이디</strong>
<input type="text" id="id_text" name="id_text" class="input w100per" maxlength="15" placeholder="아이디를 입력해주세요">
</li>
<li>
<strong>비밀번호</strong>
<input type="password" autocomplete="off" id="password_text" name="password_text" class="input w100per" value="<c:out value='${password}'/>" placeholder="비밀번호를 입력해주세요." onkeydown="javascript:if (event.keyCode == 13) { actionLogin();return false; }">
</li>
</ul>
<div class="form_wrap checkbox_wrap column">
<label for="checkId" class="checkbox_item">
<input type="checkbox" id="checkId" name="checkId">
<span>아이디 저장</span>
</label>
</div>
<div class="btn_wrap">
<button type="button" class="btn fill primary xlarge w100per" id="login_submit" onclick="javascript:actionLogin();return false;">로그인</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>