From 8c7e0f0ee7a372a710da33d9e3a6cb1db67cda01 Mon Sep 17 00:00:00 2001 From: Xin Wang Date: Mon, 13 Jul 2026 08:14:00 +0800 Subject: [PATCH] Update LoginPage placeholder text and refine MobileCallPage styling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change the placeholder text in LoginPage from "admin" to "请输入用户名" for better localization. - Adjust the styling of the floating video panel in MobileCallPage to improve responsiveness and maintain aspect ratio across different screen sizes. --- frontend/src/app/login/page.tsx | 2 +- frontend/src/components/pages/MobileCallPage.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/login/page.tsx b/frontend/src/app/login/page.tsx index fa2748c..00b88d6 100644 --- a/frontend/src/app/login/page.tsx +++ b/frontend/src/app/login/page.tsx @@ -72,7 +72,7 @@ export default function LoginPage() { autoComplete="username" value={username} onChange={(event) => setUsername(event.target.value)} - placeholder="admin" + placeholder="请输入用户名" />