80 lines
2.3 KiB
HTML
80 lines
2.3 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>
|
|
<link rel="stylesheet" href="css/login.css" />
|
|
<link rel="icon" type="image/png" href="img/favicon.png">
|
|
<style>
|
|
/* 문서시스템 버튼 스타일 */
|
|
.docs-section {
|
|
margin-top: 30px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.docs-button {
|
|
display: inline-block;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.9);
|
|
text-decoration: none;
|
|
padding: 15px 25px;
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
transition: all 0.3s ease;
|
|
backdrop-filter: blur(10px);
|
|
width: 100%;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.docs-button:hover {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
border-color: rgba(255, 255, 255, 0.25);
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.docs-title {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 14px;
|
|
margin-bottom: 15px;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.docs-button {
|
|
padding: 12px 20px;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<img src="img/logo.png" alt="테크니컬코리아 로고" class="logo" />
|
|
<h1>(주)테크니컬코리아</h1>
|
|
<h3>생산팀 포털 로그인</h3>
|
|
<form id="loginForm">
|
|
<input type="text" id="username" placeholder="아이디" required autocomplete="username" />
|
|
<input type="password" id="password" placeholder="비밀번호" required autocomplete="current-password" />
|
|
<button type="submit">로그인</button>
|
|
</form>
|
|
<div id="error" class="error-message"></div>
|
|
|
|
<!-- 📋 문서관리 시스템 섹션 -->
|
|
<div class="docs-section">
|
|
<div class="docs-title">회사 문서시스템</div>
|
|
<a href="docs/" class="docs-button">
|
|
문서관리 시스템
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ✅ 모듈로 지정 (import 쓸 수 있도록) -->
|
|
<script type="module" src="js/login.js"></script>
|
|
</body>
|
|
</html> |