1
0
Files
OAiP-Presnyakov_Ilya-Labora…/Views/RegisterWindow.xaml
Debug_pro fb13e5a20a upload
2026-06-07 18:19:53 +03:00

38 lines
2.0 KiB
XML

<Window x:Class="SimpleWiki.Views.RegisterWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Simple Wiki - Регистрация"
Width="560"
Height="720"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
Background="{StaticResource BaseBrush}">
<Border Background="{StaticResource BaseBrush}" Padding="28">
<Grid Background="{StaticResource BaseBrush}">
<Border Style="{StaticResource CardBorder}" Padding="28">
<ScrollViewer VerticalScrollBarVisibility="Auto">
<StackPanel>
<TextBlock Style="{StaticResource PageTitle}" Text="Создать аккаунт" />
<TextBlock Style="{StaticResource CaptionTextBlock}" Text="Строгая валидация включена. Машина сомневается в тебе заранее." />
<TextBlock Text="ФИО" />
<TextBox x:Name="FullNameTextBox" MaxLength="100" />
<TextBlock Text="Email" />
<TextBox x:Name="EmailTextBox" MaxLength="256" />
<TextBlock Text="Пароль" />
<PasswordBox x:Name="PasswordBox" MaxLength="64" />
<TextBlock Style="{StaticResource CaptionTextBlock}" Text="8-64 символа, строчная, заглавная, цифра и спецсимвол." />
<CheckBox x:Name="IsAdminCheckBox" Content="Администратор" />
<Button Style="{StaticResource PrimaryButton}" Content="Зарегистрироваться" Click="RegisterButton_Click" />
<Button Style="{StaticResource SecondaryButton}" Content="Назад ко входу" Click="BackButton_Click" />
</StackPanel>
</ScrollViewer>
</Border>
</Grid>
</Border>
</Window>