using Gtk 4.0; using Adw 1; template $LoginDialog : Adw.Dialog { title: _("Log In"); content-width: 360; Adw.ToolbarView { [top] Adw.HeaderBar {} Adw.Clamp { margin-top: 12; margin-bottom: 24; margin-start: 12; margin-end: 12; Adw.PreferencesGroup { Adw.EntryRow server_url_row { title: _("Server URL"); input-hints: no_spellcheck; input-purpose: url; // e.g. https://rss.example.com — /api/greader.php is added automatically } Adw.EntryRow username_row { title: _("Username"); input-hints: no_spellcheck; } Adw.PasswordEntryRow password_row { title: _("Password"); } Adw.ButtonRow login_button { title: _("Log In"); styles ["suggested-action"] } } } } }