login status and histing extentions

This commit is contained in:
Paul Schneider 2026-06-21 03:55:32 +01:00
commit 84160f0759
3 changed files with 45 additions and 2 deletions

View file

@ -103,6 +103,7 @@ public partial class LoginPageViewModel : ViewModelBase
{
try
{
this.IsBusy = true;
Settings.Load().Wait();
// The platform project picks the right redirect URI and browser
@ -146,4 +147,4 @@ public partial class LoginPageViewModel : ViewModelBase
StatusMessage = "Error: "+ex.Message;
}
}
}
}

View file

@ -54,7 +54,7 @@
IsEnabled="{Binding HasForgotPasswordUrl}"
Click="OnForgotPasswordClick"/>
<TextBlock Name="StatusText" Text="Starting authentication..." />
<TextBlock Name="StatusText" Text="{Binding StatusMessage}" TextWrapping="Wrap" />
<ProgressBar IsIndeterminate="{Binding IsBusy}" />
</StackPanel>