2025-09-11 08:16:24 +02:00

53 lines
2.4 KiB
XML

<Window x:Class="Pen_Paper_Main.Anmeldung"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Anmeldung" Height="350" Width="420"
WindowStartupLocation="CenterScreen"
ResizeMode="NoResize">
<!--Gabriel(design), Jakob(Navigation)-->
<Border Background="#F5F7FB" Padding="20">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Margin="0,0,0,12">
<TextBlock x:Name="TxtHeader" Text="Willkommen zurück" FontSize="20" FontWeight="Bold" Foreground="#1F2D3D"/>
<TextBlock x:Name="TxtSub" Text="Melde dich mit deinem Account an." Foreground="#6B778D"/>
</StackPanel>
<Border Grid.Row="1" Background="White" CornerRadius="10" Padding="16" BorderBrush="#E6EAF1" BorderThickness="1">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Margin="0,0,0,10">
<TextBlock x:Name="LblUser" Text="Benutzername" Foreground="#4A5568"/>
<TextBox x:Name="BenutzernameInput" Margin="0,6,0,0" Height="32"/>
</StackPanel>
<StackPanel Grid.Row="1">
<TextBlock x:Name="LblPw" Text="Passwort" Foreground="#4A5568"/>
<PasswordBox x:Name="PasswortBox" Margin="0,6,0,0" Height="32"/>
</StackPanel>
</Grid>
</Border>
<!-- Buttons -->
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,14,0,0">
<Button x:Name="BtnBack" Content="Zurück" Width="110" Height="34" Margin="0,0,8,0"
Background="#EEF2F7" Foreground="#1F2D3D" BorderBrush="#D7DFEA"
Click="Back_Click"/>
<Button x:Name="BtnLogin" Content="Anmelden" Width="130" Height="34"
Background="#3B82F6" Foreground="White" BorderBrush="#2463EB"
Click="Anmelden_Click"/>
</StackPanel>
</Grid>
</Border>
</Window>