ChronoFlow/ChronoFlow.View/LoginWindow.axaml
2025-06-28 14:27:18 +02:00

44 lines
1.4 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>