Login widget is fast and easy way to invoke Login form from your own UI.
This will allow user to authenticate without bringing main EyeAuras window to foreground.

You can import the ready-made example from here: https://eu.eyeauras.net/share/S20250227194343PPMhqedSZnTo
Script.csx
var window = GetService<IBlazorWindow>();
window.ViewType = typeof(MainWindow);
window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
window.ShowDialog();
MainWindow.razor
@namespace PhantomPixel
@using EyeAuras.Blazor.Controls
@inherits BlazorReactiveComponent
<h3 class="text-center">Using login Widget</h3>
<LoginWidget/>
@code {
}