From f78f46b2f3b46b92b82a40278c768a92396a07fe Mon Sep 17 00:00:00 2001 From: Franz Dietrich Date: Sat, 20 Jan 2024 16:00:30 +0100 Subject: [PATCH] Add a username and Password field. --- gui/main_window.blp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gui/main_window.blp b/gui/main_window.blp index 5d8b44d..1e891bb 100644 --- a/gui/main_window.blp +++ b/gui/main_window.blp @@ -33,6 +33,15 @@ Adw.ApplicationWindow window { valign: center; title: "Server Information"; description: "The information the server published on connection"; + } + Adw.PreferencesGroup credentials { + vexpand: true; + valign: center; + title: "Login Information"; + description: "The credentials that will be used to log in."; + Adw.EntryRow{title: "Username:";} + Adw.PasswordEntryRow{title: "Password:";} + }} }