From d9d4a018b6a3a51e7544e909fb9d4b2b71aed6cc Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Thu, 19 Mar 2026 09:42:04 +0000 Subject: [PATCH] feat(qt6): add 'Dev Credentials' label on login page with helper text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Visible until project matures — makes it clear these are dev accounts. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontends/qt6/LoginView.qml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/frontends/qt6/LoginView.qml b/frontends/qt6/LoginView.qml index 49fcdbd38..2f926d5e7 100644 --- a/frontends/qt6/LoginView.qml +++ b/frontends/qt6/LoginView.qml @@ -92,15 +92,23 @@ Rectangle { } } - // Quick login credentials + // Quick login credentials — visible until project matures CText { - text: "Quick Access" + text: "Dev Credentials" font.pixelSize: 14 font.weight: Font.DemiBold color: Theme.textSecondary Layout.fillWidth: true horizontalAlignment: Text.AlignHCenter } + CText { + text: "Click any card below to sign in instantly" + font.pixelSize: 12 + color: Theme.textSecondary + opacity: isDark ? 0.5 : 0.6 + Layout.fillWidth: true + horizontalAlignment: Text.AlignHCenter + } GridLayout { Layout.fillWidth: true