44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
x:Class="ChronoFlow.View.LoginWindow"
|
||
Width="400" Height="300"
|
||
Title="ChronoFlow Login"
|
||
CanResize="False"
|
||
WindowStartupLocation="CenterScreen">
|
||
|
||
<StackPanel Margin="20" Spacing="10">
|
||
|
||
<!-- 🔐 Überschrift -->
|
||
<TextBlock Text="ChronoFlow Login"
|
||
FontSize="24"
|
||
FontWeight="Bold"
|
||
HorizontalAlignment="Center" />
|
||
|
||
<!-- 👤 Benutzername -->
|
||
<TextBlock Text="Benutzername" />
|
||
<TextBox x:Name="UsernameBox"
|
||
Watermark="z. B. admin" />
|
||
|
||
<!-- 🔒 Passwort -->
|
||
<TextBlock Text="Passwort" />
|
||
<TextBox x:Name="PasswordBox"
|
||
PasswordChar="●"
|
||
Watermark="Passwort" />
|
||
|
||
<!-- 🟩 Login-Button -->
|
||
<Button Content="Anmelden"
|
||
Click="LoginButton_Click"
|
||
HorizontalAlignment="Center"
|
||
Width="120"
|
||
Margin="0,10,0,0" />
|
||
|
||
<!-- ❌ Fehleranzeige -->
|
||
<TextBlock x:Name="ErrorText"
|
||
Foreground="Red"
|
||
IsVisible="False"
|
||
TextWrapping="Wrap"
|
||
TextAlignment="Center"
|
||
FontWeight="SemiBold" />
|
||
|
||
</StackPanel>
|
||
</Window> |