last commit before tests
This commit is contained in:
@@ -5,43 +5,21 @@
|
||||
Title="LogInPage">
|
||||
|
||||
<Grid Margin="40,20">
|
||||
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<StackPanel Grid.Row="0"
|
||||
Orientation="Horizontal"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,0,0,50">
|
||||
<iconPacks:PackIconMaterial Kind="Account"
|
||||
Width="36"
|
||||
Height="36"
|
||||
Margin="0,0,15,0"/>
|
||||
<StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,0,0,50">
|
||||
<iconPacks:PackIconMaterial Kind="Account" Width="36" Height="36" Margin="0,0,15,0"/>
|
||||
<StackPanel>
|
||||
<TextBlock Text="Sky Team"
|
||||
FontSize="36"
|
||||
FontWeight="Bold"/>
|
||||
<TextBlock Text="Melden Sie sich an um zu starten"
|
||||
FontSize="14"
|
||||
Foreground="#666"
|
||||
Margin="0,5,0,0"/>
|
||||
<TextBlock Text="Sky Team" FontSize="36" FontWeight="Bold"/>
|
||||
<TextBlock Text="Melden Sie sich an um zu starten" FontSize="14" Foreground="#666" Margin="0,5,0,0"/>
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Form Container -->
|
||||
<Border Grid.Row="1"
|
||||
Background="White"
|
||||
CornerRadius="16"
|
||||
Padding="50"
|
||||
BorderBrush="#E0E0E0"
|
||||
BorderThickness="1"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Center">
|
||||
<Border Grid.Row="1" Background="White" CornerRadius="16" Padding="50" BorderBrush="#E0E0E0" BorderThickness="1" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||
<Grid>
|
||||
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
@@ -50,65 +28,25 @@
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="40"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Label Content="Email (Benutzername):" Grid.Row="0" FontWeight="SemiBold"/>
|
||||
<TextBox x:Name="BenutzernameTextBox" Grid.Row="1" Height="45" FontSize="14"/>
|
||||
|
||||
<Label Content="Benutzername:"
|
||||
Grid.Row="0" Grid.Column="0"
|
||||
VerticalAlignment="Center"
|
||||
Margin="0,0,12,8"
|
||||
FontSize="14"
|
||||
FontWeight="SemiBold"/>
|
||||
<TextBox x:Name="BenutzernameTextBox"
|
||||
Grid.Row="1" Grid.ColumnSpan="2"
|
||||
Height="45"
|
||||
FontSize="14"
|
||||
Margin="0,0,0,0"/>
|
||||
<Label Content="Passwort:" Grid.Row="3" FontWeight="SemiBold"/>
|
||||
<PasswordBox x:Name="PasswortTextBox" Grid.Row="4" Height="45" FontSize="14"/>
|
||||
|
||||
<Label Content="Passwort:"
|
||||
Grid.Row="3" Grid.Column="0"
|
||||
VerticalAlignment="Center"
|
||||
Margin="0,0,12,8"
|
||||
FontSize="14"
|
||||
FontWeight="SemiBold"/>
|
||||
<PasswordBox x:Name="PasswortTextBox"
|
||||
Grid.Row="4" Grid.ColumnSpan="2"
|
||||
Height="45"
|
||||
FontSize="14"
|
||||
Margin="0,0,0,0"/>
|
||||
|
||||
<StackPanel Grid.Row="6"
|
||||
Grid.ColumnSpan="2"
|
||||
Orientation="Horizontal"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,20,0,0">
|
||||
<Button Content="Login"
|
||||
Width="140"
|
||||
Height="48"
|
||||
Margin="0,0,20,0"
|
||||
Background="#FF1E88E5"
|
||||
Foreground="White"
|
||||
FontSize="15"
|
||||
FontWeight="Bold"
|
||||
Click="LogInButton_Click"/>
|
||||
<Button Content="Registrieren"
|
||||
Width="140"
|
||||
Height="48"
|
||||
Background="Transparent"
|
||||
BorderBrush="#DDD"
|
||||
BorderThickness="1"
|
||||
Foreground="#666"
|
||||
FontSize="15"
|
||||
FontWeight="SemiBold"
|
||||
Click="anmeldungsButton_Click"/>
|
||||
<StackPanel Grid.Row="6" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,20,0,0">
|
||||
<Button Content="Login" Width="140" Height="48" Margin="0,0,20,0" Background="#FF1E88E5" Foreground="White" FontWeight="Bold" Click="LogInButton_Click"/>
|
||||
<Button Content="Registrieren" Width="140" Height="48" Background="Transparent" BorderBrush="#DDD" Foreground="#666" Click="anmeldungsButton_Click"/>
|
||||
</StackPanel>
|
||||
|
||||
<TextBlock Grid.Row="7" HorizontalAlignment="Center" Margin="0,20,0,0">
|
||||
<Run Text="Sind Sie Admin?" Foreground="#666"/>
|
||||
<Hyperlink Click="AdminLink_Click" Foreground="#1E88E5" TextDecorations="None" FontWeight="Bold">Bitte hier klicken</Hyperlink>
|
||||
</TextBlock>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
</Grid>
|
||||
</Page>
|
||||
</Page>
|
||||
Reference in New Issue
Block a user