30 lines
1.5 KiB
XML
30 lines
1.5 KiB
XML
<Window x:Class="PenAndPaperFinal_Final.Registrieren"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:PenAndPaperFinal_Final"
|
|
mc:Ignorable="d"
|
|
Title="Registrieren" Height="450" Width="800">
|
|
<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" />
|
|
|
|
<TextBox Height="35" Margin="10" Foreground="Gray" HorizontalContentAlignment="Center" VerticalContentAlignment="Center">Benutzername eingeben</TextBox>
|
|
|
|
<TextBox x:Name="PasswortBox" Margin="10" Height="35" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Foreground="Gray">Passwort eingeben</TextBox>
|
|
|
|
<TextBox Height="35" Margin="10 " HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Foreground="Gray">Passwort bestätigen</TextBox>
|
|
|
|
|
|
<Button Content="Jetzt Starten"
|
|
Height="40" Background="#3B82F6" Foreground="White"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|