Build installer and management site from spec

This commit is contained in:
2026-05-07 23:22:34 +09:00
parent 0b061e63b7
commit af6e559682
33 changed files with 7125 additions and 1 deletions

29
views/op/login.ejs Normal file
View File

@@ -0,0 +1,29 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>관리자 로그인</title>
<link rel="stylesheet" href="/static/styles.css" />
</head>
<body class="siteBody adminLoginBody">
<main class="loginPanel">
<p class="eyebrow">OP LOGIN</p>
<h1>관리자 로그인</h1>
<form method="post" action="/op/login" class="stackForm">
<label>
<span>아이디</span>
<input name="id" required />
</label>
<label>
<span>비밀번호</span>
<input type="password" name="password" required />
</label>
<% if (errorMessage) { %>
<p class="errorText"><%= errorMessage %></p>
<% } %>
<button class="primaryButton" type="submit">로그인</button>
</form>
</main>
</body>
</html>