20 lines
791 B
XML
20 lines
791 B
XML
<Page
|
|
x:Class="AutoCat.MainPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:AutoCat"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid>
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="16" Width="400">
|
|
<TextBox x:Name="LoginBox"/>
|
|
<PasswordBox x:Name="PasswordBox"/>
|
|
<Button Content="Login" HorizontalAlignment="Stretch" Click="Login_Click"/>
|
|
<Button Content="Register" HorizontalAlignment="Stretch"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
</Page>
|