feat: translate landlord login page and remove security text
All checks were successful
Koori-ERP-Deploy-System / deploy-demo (push) Successful in 45s
Koori-ERP-Deploy-System / deploy-production (push) Has been skipped

This commit is contained in:
2026-01-16 10:03:02 +08:00
parent 736a01f198
commit 8a9b8135bd

View File

@@ -37,7 +37,7 @@ export default function LandlordLogin() {
<div className="flex flex-col items-center mb-8">
{/* 使用不同風格的 Logo 或純文字 */}
<div className="text-white text-3xl font-bold tracking-wider mb-2">Star ERP</div>
<div className="text-slate-400 text-sm tracking-widest uppercase">Central Administration</div>
<div className="text-slate-400 text-sm tracking-widest uppercase"></div>
</div>
<div className="glass-panel p-8 rounded-xl shadow-2xl bg-slate-800/50 backdrop-blur-md border border-slate-700/50">
@@ -52,7 +52,7 @@ export default function LandlordLogin() {
onChange={(e) => setData("username", e.target.value)}
required
autoFocus
placeholder="Admin Username"
placeholder="管理員帳號"
/>
<InputError message={errors.username} className="mt-2" />
</div>
@@ -92,9 +92,7 @@ export default function LandlordLogin() {
</form>
</div>
<p className="text-center text-slate-600 text-xs mt-8 font-mono">
SECURE SYSTEM ACCESS RESTRICTED
</p>
</div>
</div>
);