88 lines
2.9 KiB
XML
88 lines
2.9 KiB
XML
<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 Margin="20">
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- 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"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="200"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Content="Benutzername:"
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Margin="0,0,10,10"/>
|
|
|
|
<TextBox x:Name="BenutzernameTextBox"
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
Margin="0,0,0,10"/>
|
|
|
|
<Label Content="Passwort:"
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
Margin="0,0,10,20"/>
|
|
|
|
<PasswordBox x:Name="PasswortTextBox"
|
|
Grid.Row="2"
|
|
Grid.ColumnSpan="2"
|
|
Margin="0,0,0,20"/>
|
|
|
|
<!-- Buttons -->
|
|
<StackPanel Grid.Row="3"
|
|
Grid.ColumnSpan="2"
|
|
Orientation="Horizontal"
|
|
HorizontalAlignment="Center">
|
|
<Button Content="Login"
|
|
Width="110"
|
|
Margin="0,0,20,0"
|
|
Click="LogInButton"/>
|
|
<Button Content="Registrieren"
|
|
Width="110"
|
|
Click="anmeldungsButton"/>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</Page>
|