- Login form/route accepts password only; matched account row provides session userId
- PackDefinition: replace packPath with mapPath (.mc_custom/saves) and serverPath (server install dir); editor exposes two .zip fields
- Installer resolves relative platform/map/server URLs against manifest origin under /file/{platforms,maps,servers}/<name>; downloads and extracts the zips
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
25 lines
744 B
Plaintext
25 lines
744 B
Plaintext
<!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 centerLayout">
|
|
<main class="loginCard">
|
|
<h1>관리자 로그인</h1>
|
|
<% if (error) { %>
|
|
<p class="errorBanner"><%= error %></p>
|
|
<% } %>
|
|
<form method="post" action="/op" class="loginForm">
|
|
<label>
|
|
<span>비밀번호</span>
|
|
<input name="password" type="password" autocomplete="current-password" required autofocus />
|
|
</label>
|
|
<button class="primaryButton" type="submit">로그인</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|