20 lines
946 B
XML
20 lines
946 B
XML
<UserControl
|
|
xmlns="https://github.com/avaloniaui"
|
|
x:Class="Project.View.LoginPage"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
>
|
|
<Grid Background="SandyBrown">
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
<Image Source="avares://Project.View/Images/keywi_logo_2.png" Height="400" Width="400"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock>Your Login Name:</TextBlock>
|
|
<TextBox Watermark="Login-Name" TextWrapping="NoWrap"/>
|
|
<TextBlock>Password:</TextBlock>
|
|
<TextBox Watermark="Password" TextWrapping="NoWrap" PasswordChar="*"/>
|
|
<Button Name="ConfirmButton" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Center" Margin="20"> LOGIN </Button>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</UserControl> |