chore: 현재 작업 중간 커밋

This commit is contained in:
chungyeong
2026-03-05 11:00:45 +09:00
parent 02970df6af
commit be88b4fcec
43 changed files with 6837 additions and 466 deletions

41
src/dashboard/login.html Normal file
View File

@@ -0,0 +1,41 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Air-Watcher Login</title>
<link rel="stylesheet" href="/login.css" />
</head>
<body>
<main class="auth-layout">
<section class="auth-card">
<p class="eyebrow">AIR-WATCHER</p>
<h1>로그인</h1>
<p class="sub">계정별 watch 목록과 텔레그램 알림을 분리해서 사용합니다.</p>
<form id="loginForm" class="auth-form">
<label class="field">
<span>아이디</span>
<input id="username" name="username" type="text" autocomplete="username" required />
</label>
<label class="field">
<span>비밀번호</span>
<input
id="password"
name="password"
type="password"
autocomplete="current-password"
required
/>
</label>
<button id="loginBtn" class="btn" type="submit">로그인</button>
<p id="message" class="message"></p>
</form>
</section>
</main>
<script src="/login.js"></script>
</body>
</html>