|
|
@ -36,8 +36,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextBlock Style="{StaticResource TextBlockRessource}" FontSize="15">Nom d'utilisateur</TextBlock>
|
|
|
|
<TextBlock Style="{StaticResource TextBlockRessource}" FontSize="15">Nom d'utilisateur</TextBlock>
|
|
|
|
|
|
|
|
<StackPanel Grid.Column="1" Margin="30">
|
|
|
|
|
|
|
|
<TextBlock x:Name="ErrorUserName" HorizontalAlignment="Center" FontSize="15" Foreground="#FF6347" Visibility="Hidden">Veuillez renseigner votre nom d'utilisateurs</TextBlock>
|
|
|
|
<Border Grid.Column="1" Style="{StaticResource BorderRessource}">
|
|
|
|
<Border Grid.Column="1" Style="{StaticResource BorderRessource}">
|
|
|
|
<TextBox>
|
|
|
|
<TextBox x:Name="UserName">
|
|
|
|
<TextBox.Resources>
|
|
|
|
<TextBox.Resources>
|
|
|
|
<Style TargetType="{x:Type Border}">
|
|
|
|
<Style TargetType="{x:Type Border}">
|
|
|
|
<Setter Property="CornerRadius" Value="5"/>
|
|
|
|
<Setter Property="CornerRadius" Value="5"/>
|
|
|
@ -45,17 +47,25 @@
|
|
|
|
</TextBox.Resources>
|
|
|
|
</TextBox.Resources>
|
|
|
|
</TextBox>
|
|
|
|
</TextBox>
|
|
|
|
</Border>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="1" Style="{StaticResource TextBlockRessource}" FontSize="15">Mot de passe</TextBlock>
|
|
|
|
<TextBlock Grid.Row="1" Style="{StaticResource TextBlockRessource}" FontSize="15">Mot de passe</TextBlock>
|
|
|
|
<Border Grid.Column="1" Grid.Row="1" Style="{StaticResource BorderRessource}">
|
|
|
|
|
|
|
|
<TextBox>
|
|
|
|
<StackPanel Grid.Row="1" Grid.Column="1">
|
|
|
|
<TextBox.Resources>
|
|
|
|
<TextBlock x:Name="ErrorPassword" HorizontalAlignment="Center" FontSize="15" Foreground="#FF6347" Visibility="Hidden">Veuillez renseigner votre mot de passe</TextBlock>
|
|
|
|
|
|
|
|
<Border Style="{StaticResource BorderRessource}">
|
|
|
|
|
|
|
|
<PasswordBox x:Name="Password">
|
|
|
|
|
|
|
|
<PasswordBox.Resources>
|
|
|
|
<Style TargetType="{x:Type Border}">
|
|
|
|
<Style TargetType="{x:Type Border}">
|
|
|
|
<Setter Property="CornerRadius" Value="5"/>
|
|
|
|
<Setter Property="CornerRadius" Value="5"/>
|
|
|
|
</Style>
|
|
|
|
</Style>
|
|
|
|
</TextBox.Resources>
|
|
|
|
</PasswordBox.Resources>
|
|
|
|
</TextBox>
|
|
|
|
</PasswordBox>
|
|
|
|
</Border>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</DockPanel>
|
|
|
|
</DockPanel>
|
|
|
|
</UserControl>
|
|
|
|
</UserControl>
|
|
|
|