Initial commit: AI platform app (server, views, lib, data, deploy docs)

Made-with: Cursor
This commit is contained in:
2026-04-03 20:45:17 +09:00
commit da39cfeef9
70 changed files with 17506 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<%
const label = typeof buttonLabel !== 'undefined' && buttonLabel ? buttonLabel : '관리자';
%>
<% if (typeof adminMode !== 'undefined' && adminMode) { %>
<a href="/admin" class="top-action-link"><%= label %></a>
<% } else { %>
<button type="button" class="top-action-link" onclick="openAdminTokenModal()"><%= label %></button>
<% } %>