ErstChanges , braucht immer noch debug ,wahrscheinlich später
This commit is contained in:
@@ -1,26 +1,45 @@
|
||||
<Page x:Class="SkyTeam.LogInPage"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
||||
Title="LogInPage">
|
||||
|
||||
<Grid>
|
||||
<Grid Margin="20">
|
||||
|
||||
|
||||
<TextBlock Text="Sky Team"
|
||||
FontSize="36"
|
||||
FontStyle="Oblique"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,40,0,40"/>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
|
||||
<Grid VerticalAlignment="Center"
|
||||
<!-- Header -->
|
||||
<StackPanel Grid.Row="0"
|
||||
Orientation="Horizontal"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,0,0,30">
|
||||
<iconPacks:PackIconMaterial Kind="Account"
|
||||
Width="28"
|
||||
Height="28"
|
||||
Margin="0,0,10,0"/>
|
||||
<StackPanel>
|
||||
<TextBlock Text="Sky Team"
|
||||
FontSize="28"
|
||||
FontWeight="Bold"/>
|
||||
<TextBlock Text="Melden Sie sich an um zu starten"
|
||||
FontSize="12"
|
||||
Foreground="Gray"/>
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Form -->
|
||||
<Grid Grid.Row="1"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Center">
|
||||
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Grid.ColumnDefinitions>
|
||||
@@ -28,7 +47,6 @@
|
||||
<ColumnDefinition Width="200"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
|
||||
<Label Content="Benutzername:"
|
||||
Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
@@ -39,29 +57,25 @@
|
||||
Grid.Column="1"
|
||||
Margin="0,0,0,10"/>
|
||||
|
||||
|
||||
<Label Content="Passwort:"
|
||||
Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Margin="0,0,10,10"/>
|
||||
Margin="0,0,10,20"/>
|
||||
|
||||
<PasswordBox x:Name="PasswortTextBox"
|
||||
Grid.Row="1"
|
||||
Grid.Column="1"
|
||||
Margin="0,0,0,10"/>
|
||||
Grid.Row="2"
|
||||
Grid.ColumnSpan="2"
|
||||
Margin="0,0,0,20"/>
|
||||
|
||||
|
||||
<StackPanel Grid.Row="2"
|
||||
<!-- Buttons -->
|
||||
<StackPanel Grid.Row="3"
|
||||
Grid.ColumnSpan="2"
|
||||
Orientation="Horizontal"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,20,0,0">
|
||||
|
||||
HorizontalAlignment="Center">
|
||||
<Button Content="Login"
|
||||
Width="110"
|
||||
Margin="0,0,20,0"
|
||||
Click="LogInButton"/>
|
||||
|
||||
<Button Content="Registrieren"
|
||||
Width="110"
|
||||
Click="anmeldungsButton"/>
|
||||
|
||||
Reference in New Issue
Block a user