diff options
m--------- | ApartmentAdmin | 0 | ||||
-rw-r--r-- | ApartmentManager/ApartmentManager/App.xaml | 2 | ||||
-rw-r--r-- | ApartmentManager/ApartmentManager/View/LoginPage.xaml | 10 |
3 files changed, 8 insertions, 4 deletions
diff --git a/ApartmentAdmin b/ApartmentAdmin new file mode 160000 +Subproject 9345c7a897c4f0f195c80f117850b8fec1f91af diff --git a/ApartmentManager/ApartmentManager/App.xaml b/ApartmentManager/ApartmentManager/App.xaml index e4c9342..dc08cec 100644 --- a/ApartmentManager/ApartmentManager/App.xaml +++ b/ApartmentManager/ApartmentManager/App.xaml @@ -3,6 +3,6 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:ApartmentManager" - RequestedTheme="Light"> + RequestedTheme="Dark"> </Application> diff --git a/ApartmentManager/ApartmentManager/View/LoginPage.xaml b/ApartmentManager/ApartmentManager/View/LoginPage.xaml index a3b3111..bca57b4 100644 --- a/ApartmentManager/ApartmentManager/View/LoginPage.xaml +++ b/ApartmentManager/ApartmentManager/View/LoginPage.xaml @@ -8,8 +8,12 @@ mc:Ignorable="d"> <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> - <StackPanel> - <TextBox Text="weqwe"></TextBox> - </StackPanel> + <StackPanel Height="200" Width="300"> + <TextBlock Margin="0,10,0,10" Text="User Name"></TextBlock> + <TextBox ></TextBox> + <TextBlock Margin="0,10,0,10" Text="Password"></TextBlock> + <TextBox ></TextBox> + <Button Margin="0,10,0,10" Content="Log In" HorizontalAlignment="Stretch"></Button> + </StackPanel> </Grid> </Page> |