2025-08-27 10:34:08 +02:00

28 lines
1.3 KiB
XML

<Window x:Class="PenAndPaperFinal_Final.Anmeldung"
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="Anmeldung" Height="450" Width="800">
<Grid Background="LightBlue">
<Border Width="350" Padding="20" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" >
<StackPanel >
<TextBlock Text="Anmeldung" FontSize="24" FontWeight="Bold"
HorizontalAlignment="Center" />
<TextBox Margin="10" Height="35" Foreground="Gray" HorizontalContentAlignment="Center" VerticalContentAlignment="Center">Benutzername</TextBox>
<PasswordBox Margin="10" x:Name="PasswortBox" Height="35" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"></PasswordBox>
<Button Content="Anmelden"
Height="40" Background="#3B82F6" Foreground="White"/>
</StackPanel>
</Border>
</Grid>
</Window>