36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<Window x:Class="ShadowStream.LogIn"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Log In" Height="300" Width="400"
|
|
WindowStartupLocation="CenterScreen"
|
|
ResizeMode="NoResize">
|
|
<Grid Margin="20">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="Please sign in"
|
|
FontSize="20"
|
|
FontWeight="Bold"
|
|
HorizontalAlignment="Center"
|
|
Margin="0,0,0,20"/>
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Vertical" Margin="0,0,0,10">
|
|
<TextBlock Text="Username" Margin="0,0,0,5"/>
|
|
<TextBox x:Name="UsernameBox" Width="250" Height="25"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Vertical" Margin="0,0,0,20">
|
|
<TextBlock Text="Password" Margin="0,0,0,5"/>
|
|
<PasswordBox x:Name="PasswordBox" Width="250" Height="25"/>
|
|
</StackPanel>
|
|
|
|
<Button Grid.Row="3" Content="Log In"
|
|
Width="100" Height="30"
|
|
HorizontalAlignment="Center"
|
|
Click="LogIn_Click"/>
|
|
</Grid>
|
|
</Window> |