|
@@ -0,0 +1,31 @@
|
|
|
+<Page x:Class="bebra.Pages.AuthPage"
|
|
|
+ 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:bebra.Pages"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:DesignHeight="300" d:DesignWidth="300"
|
|
|
+ Title="Авторизация">
|
|
|
+
|
|
|
+ <Grid Background="White">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ <RowDefinition Height="225"/>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ <ColumnDefinition Width="50"/>
|
|
|
+ <ColumnDefinition Width="170"/>
|
|
|
+ <ColumnDefinition Width="1*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Label Content="логин" HorizontalAlignment="Center" Margin="0,37,0,0" VerticalAlignment="Top" Height="19" Width="50" Grid.Column="1" Grid.RowSpan="2"/>
|
|
|
+ <TextBox HorizontalAlignment="Center" Margin="0,37,0,0" Text="TextBox" TextWrapping="Wrap" VerticalAlignment="Top" Width="170" Grid.Column="2" Height="19" Grid.RowSpan="2"/>
|
|
|
+ <Label Content="Пароль" HorizontalAlignment="Center" Margin="0,30,0,0" VerticalAlignment="Top" Height="19" Width="50" Grid.Column="1" Grid.Row="1"/>
|
|
|
+ <TextBox HorizontalAlignment="Center" Margin="0,30,0,0" Text="TextBox" TextWrapping="Wrap" VerticalAlignment="Top" Width="170" Grid.Column="2" Height="19" Grid.Row="1"/>
|
|
|
+ <Button Content="Вход" Grid.Column="2" HorizontalAlignment="Center" Margin="0,72,0,0" Grid.Row="1" VerticalAlignment="Top" Width="170"/>
|
|
|
+ <Button Content="Регистрация" Grid.Column="2" HorizontalAlignment="Center" Grid.Row="1" VerticalAlignment="Center" Width="170"/>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+</Page>
|