Project_Keywi/Project.View/Login Page/LoginPage.axaml
2025-04-08 09:31:41 +02:00

19 lines
933 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="Wrap"/>
<TextBlock>Password:</TextBlock>
<TextBox Watermark="Password" TextWrapping="Wrap" PasswordChar="*"/>
<Button Name="ConfirmButton" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Center" Margin="20"> LOGIN </Button>
</StackPanel>
</Grid>
</UserControl>