57 lines
1.8 KiB
XML
57 lines
1.8 KiB
XML
<UserControl
|
|
Height="500"
|
|
Width="350"
|
|
x:Class="Project.View.NewLogin"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Grid>
|
|
|
|
<Border Background="SandyBrown">
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
<TextBlock
|
|
FontSize="20"
|
|
HorizontalAlignment="Left"
|
|
Text="Username:" />
|
|
<TextBox
|
|
TextWrapping="Wrap"
|
|
Watermark="Username"
|
|
x:Name="NewLoginUsernameBox" />
|
|
<TextBlock
|
|
FontSize="20"
|
|
HorizontalAlignment="Left"
|
|
Margin="23"
|
|
Text="Password:" />
|
|
<TextBox
|
|
PasswordChar="*"
|
|
TextWrapping="Wrap"
|
|
Watermark="Password:"
|
|
x:Name="NewLoginPasswordBox" />
|
|
<TextBlock
|
|
FontSize="20"
|
|
HorizontalAlignment="Left"
|
|
Margin="23"
|
|
Text="Email:" />
|
|
<TextBox
|
|
TextWrapping="Wrap"
|
|
Watermark="Email:"
|
|
x:Name="NewLoginEmailBox" />
|
|
<StackPanel Orientation="Horizontal">
|
|
<Button
|
|
BorderBrush="Black"
|
|
BorderThickness="1"
|
|
Click="NewLoginSaveOnClick"
|
|
Content="Save" />
|
|
<Button
|
|
BorderBrush="Black"
|
|
BorderThickness="1"
|
|
Click="NewLoginCancelOnClick"
|
|
Content="Cancel" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
|
|
</UserControl> |