补充 Docker 配置与登录页品牌修改

This commit is contained in:
新觅源码库
2026-06-02 06:07:58 +00:00
parent f10cd4cd9a
commit a7c6f47c12
6 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
export default {
// Login
login: {
title: 'Hermes Web UI',
title: '新觅 Web UI',
description: 'Enter your username and password to continue.',
placeholder: 'Access token',
submit: 'Login',
+1 -1
View File
@@ -1,7 +1,7 @@
export default {
// 登录
login: {
title: 'Hermes Web UI',
title: '新觅 Web UI',
description: '输入用户名和密码以继续。',
placeholder: '访问令牌',
submit: '登录',
+3 -3
View File
@@ -62,7 +62,7 @@ async function handlePasswordLogin() {
<div class="login-view">
<div class="login-card">
<div class="login-logo">
<img src="/logo.png" alt="Hermes" width="80" height="80" />
<img src="/logo.png" alt="新觅源码库" width="80" height="80" />
</div>
<h1 class="login-title">{{ t("login.title") }}</h1>
<p class="login-desc">{{ t("login.description") }}</p>
@@ -87,9 +87,9 @@ async function handlePasswordLogin() {
<div v-if="errorMsg" class="login-error">{{ errorMsg }}</div>
<div v-if="showLockResetHint" class="login-lock-hint">
<span>{{ t("login.lockResetHint") }}</span>
<code>hermes-web-ui clear-login-locks --restart</code>
<code>xinmi-hermes-ui clear-login-locks --restart</code>
<span>{{ t("login.defaultLoginResetHint") }}</span>
<code>hermes-web-ui reset-default-login</code>
<code>xinmi-hermes-ui reset-default-login</code>
</div>
<button type="submit" class="login-btn" :disabled="loading">
{{ loading ? "..." : t("login.submit") }}