44 lines
2.0 KiB
XML
44 lines
2.0 KiB
XML
<Window x:Class="Pen_Paper_Main.Registrieren"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Registrieren" Height="450" Width="800">
|
|
|
|
<!--Jakob-->
|
|
<Grid Background="LightBlue">
|
|
<Border Width="350" Padding="20" Background="White" CornerRadius="10"
|
|
VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
<StackPanel>
|
|
|
|
<TextBlock Text="Neues Konto anlegen"
|
|
FontSize="24" FontWeight="Bold"
|
|
HorizontalAlignment="Center" Margin="0,0,0,10"/>
|
|
|
|
<!-- Benutzername -->
|
|
<TextBlock Text="Benutzername" Margin="10,0,10,4"/>
|
|
<TextBox x:Name="BenutzernameInput"
|
|
Height="35" Margin="10"
|
|
HorizontalContentAlignment="Center"
|
|
VerticalContentAlignment="Center"/>
|
|
|
|
<!-- Passwort -->
|
|
<TextBlock Text="Passwort" Margin="10,6,10,4"/>
|
|
<PasswordBox x:Name="PasswortBox"
|
|
Height="35" Margin="10"
|
|
HorizontalContentAlignment="Center"
|
|
VerticalContentAlignment="Center"/>
|
|
|
|
<!-- Passwort bestätigen -->
|
|
<TextBlock Text="Passwort bestätigen" Margin="10,6,10,4"/>
|
|
<PasswordBox x:Name="PasswortBoxConfirm"
|
|
Height="35" Margin="10"
|
|
HorizontalContentAlignment="Center"
|
|
VerticalContentAlignment="Center"/>
|
|
|
|
<Button Content="Jetzt Starten"
|
|
Height="40" Margin="10,16,10,0"
|
|
Background="#3B82F6" Foreground="White"
|
|
Click="Button_Click"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|
|
</Window> |