42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!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>
|