23 lines
984 B
XML
23 lines
984 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" />
|
|
|
|
<TextBlock Text="Passwort bestätigen:" />
|
|
<TextBox x:Name="BestaetigenBox" />
|
|
|
|
<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> |