51 lines
1.6 KiB
XML
51 lines
1.6 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"
|
|
x:Name="LoginNameBox" />
|
|
|
|
<TextBlock>Password:</TextBlock>
|
|
|
|
|
|
<TextBox
|
|
PasswordChar="*"
|
|
TextWrapping="Wrap"
|
|
Watermark="Password"
|
|
x:Name="LoginPasswordBox" />
|
|
<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> |