VPR-Projekt-Frontend-2/Anmeldung.xaml

62 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"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Pen_Paper_Main"
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" />
<Grid Margin="10" Height="35">
<TextBox x:Name="BenutzernameInput"
Foreground="Gray"
HorizontalContentAlignment="Center"
VerticalContentAlignment="Center"
TextChanged="BenutzernameInput_TextChanged" />
<TextBlock x:Name="BenutzernamePlaceHolder"
Text="Benutzernamen eingeben"
Foreground="Gray"
VerticalAlignment="Center"
HorizontalAlignment="Center"
IsHitTestVisible="False"
Margin="5,0,0,0"/>
</Grid>
<Grid Margin="10" Height="35">
<PasswordBox x:Name="PasswortBox"
HorizontalContentAlignment="Center"
VerticalContentAlignment="Center"
PasswordChanged="PasswortBox_PasswordChanged"/>
<TextBlock x:Name="PasswortPlaceholder"
Text="Passwort eingeben"
Foreground="Gray"
VerticalAlignment="Center"
HorizontalAlignment="Center"
IsHitTestVisible="False"
Margin="5,0,0,0"/>
</Grid>
<Button Content="Anmelden"
Height="40" Background="#3B82F6"
Foreground="White"
Click="Anmelden_Click"/>
</StackPanel>
</Border>
</Grid>
</Window>