AutoCatUwp/AutoCat/obj/x64/Debug/Pages/AuthPage.xaml
2021-01-24 18:21:04 +03:00

25 lines
1.1 KiB
XML

<Page x:ConnectionId='1'
x:Class="AutoCat.Pages.AuthPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:AutoCat.Pages"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="using:AutoCat.ViewModel"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
d:Width="600" d:Height="400"
>
<Grid>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Width="400" Spacing="16">
<TextBox x:ConnectionId='2' Name="Email" PlaceholderText="Email" />
<PasswordBox x:ConnectionId='3' Name="Password" PlaceholderText="Password"/>
<Button x:ConnectionId='4' Name="Login" Content="Log In" HorizontalAlignment="Stretch" />
<ProgressRing x:ConnectionId='5' Name="Progress" Width="32" Height="32" Visibility="Collapsed"/>
</StackPanel>
</Grid>
</Page>