ChronoFlow/ChronoFlow.View/Security/PasswortAendernDialog.axaml

23 lines
1022 B
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ChronoFlow.View.Security.PasswortAendernDialog"
Width="400" Height="250"
Title="Passwort ändern">
<StackPanel Margin="20" Spacing="10">
<TextBlock x:Name="UsernameTextBlock" Text="Benutzer: " FontSize="16" FontWeight="Bold" />
<TextBlock Text="Neues Passwort:" />
<TextBox x:Name="NeuesPasswortBox" PasswordChar="●" />
<TextBlock Text="Passwort bestätigen:" />
<TextBox x:Name="BestaetigenBox" PasswordChar="●" />
<TextBlock x:Name="FehlerText" Foreground="Red" IsVisible="False" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Spacing="10" Margin="0,10,0,0">
<Button Content="💾 Speichern" Click="SpeichernButton_Click" Width="100" />
<Button Content="❌ Abbrechen" Click="AbbrechenButton_Click" Width="100" />
</StackPanel>
</StackPanel>
</Window>