Files
OfficeFlow/OfficeFlow/Pages/LoginPage.xaml
2025-05-22 20:26:15 +03:00

47 lines
2.3 KiB
XML

<Page x:Class="OfficeFlow.Pages.LoginPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:OfficeFlow.Pages"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Title="Вход в систему">
<Grid Margin="10">
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Width="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!-- Заголовок -->
<TextBlock Text="Вход в систему" FontSize="20" FontWeight="Bold" HorizontalAlignment="Center" Margin="0,0,0,20"/>
<!-- Логин -->
<StackPanel Grid.Row="1" Orientation="Vertical" Margin="0,0,0,10">
<TextBlock Text="Логин:" FontSize="14" Margin="0,0,0,5"/>
<TextBox x:Name="LoginTextBox" Height="30" VerticalContentAlignment="Center" Margin="0,0,0,10"/>
</StackPanel>
<!-- Пароль -->
<StackPanel Grid.Row="2" Orientation="Vertical" Margin="0,0,0,10">
<TextBlock Text="Пароль:" FontSize="14" Margin="0,0,0,5"/>
<PasswordBox x:Name="PasswordBox" Height="30" VerticalContentAlignment="Center" Margin="0,0,0,10"/>
</StackPanel>
<!-- Кнопка входа -->
<Button Grid.Row="3" Content="Войти" Width="100" Height="35" Click="LoginButton_Click" Background="#4CAF50" Foreground="White" HorizontalAlignment="Center"/>
<!-- Текст ошибки -->
<TextBlock x:Name="ErrorMessage" Grid.Row="4" Text="" Foreground="Red" FontSize="12" HorizontalAlignment="Center" Margin="0,10,0,0" Visibility="Collapsed"/>
</Grid>
</StackPanel>
</Grid>
</Page>