2025-02-01 18:19:18 +03:00
|
|
|
<UserControl xmlns="https://github.com/avaloniaui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2025-06-23 16:39:30 +03:00
|
|
|
xmlns:customControls="clr-namespace:Nebula.Launcher.Controls"
|
2025-02-01 18:19:18 +03:00
|
|
|
xmlns:popup="clr-namespace:Nebula.Launcher.ViewModels.Popup"
|
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
|
x:Class="Nebula.Launcher.Views.Popup.TfaView">
|
|
|
|
|
<Design.DataContext>
|
|
|
|
|
<popup:TfaViewModel />
|
|
|
|
|
</Design.DataContext>
|
|
|
|
|
<StackPanel HorizontalAlignment="Stretch" Spacing="25" VerticalAlignment="Center">
|
2025-06-23 16:39:30 +03:00
|
|
|
<customControls:LocalizedLabel HorizontalAlignment="Center" LocalId="twofa-enabled"/>
|
2025-02-01 18:19:18 +03:00
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Spacing="10" x:Name="TContainer">
|
|
|
|
|
<Border BoxShadow="{StaticResource DefaultShadow}">
|
|
|
|
|
<TextBox MaxLength="1"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border BoxShadow="{StaticResource DefaultShadow}">
|
|
|
|
|
<TextBox MaxLength="1"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border BoxShadow="{StaticResource DefaultShadow}">
|
|
|
|
|
<TextBox MaxLength="1"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border BoxShadow="{StaticResource DefaultShadow}">
|
|
|
|
|
<TextBox MaxLength="1"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border BoxShadow="{StaticResource DefaultShadow}">
|
|
|
|
|
<TextBox MaxLength="1"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border BoxShadow="{StaticResource DefaultShadow}">
|
|
|
|
|
<TextBox MaxLength="1"/>
|
|
|
|
|
</Border>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<Border BoxShadow="{StaticResource DefaultShadow}" Background="{StaticResource DefaultSelected}" HorizontalAlignment="Center">
|
|
|
|
|
<Button Click="Button_OnClick">
|
2025-06-23 16:39:30 +03:00
|
|
|
<customControls:LocalizedLabel HorizontalAlignment="Center" Margin="15,5,15,5" LocalId="twofa-set"/>
|
2025-02-01 18:19:18 +03:00
|
|
|
</Button>
|
|
|
|
|
</Border>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</UserControl>
|