Project_Keywi/Project.View/Login Page/LoginPage.axaml

47 lines
1.5 KiB
XML

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