You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
3.0 KiB
55 lines
3.0 KiB
<Window x:Class="WpfApp1.CreerCompte"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:WpfApp1"
|
|
mc:Ignorable="d"
|
|
Title="CreerCompte" Height="450" Width="800">
|
|
<DockPanel>
|
|
<DockPanel x:Name="Button" DockPanel.Dock="Top">
|
|
<Grid>
|
|
<Image Source="Images\Logo_entier.png" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,10,0,10" Height="40" Stretch="Uniform" StretchDirection="Both"></Image>
|
|
<Button Style="{StaticResource Button1}" x:Name="exit" HorizontalAlignment="Right" VerticalAlignment="Center" DockPanel.Dock="Right" Width="50" Height="50" FontSize="25" Click="exit_Click" BorderBrush="{StaticResource Couleur1}">
|
|
<Image Source="Images\cross.png" />
|
|
</Button>
|
|
</Grid>
|
|
</DockPanel>
|
|
<DockPanel>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<local:UserControlBoite Message="Email" Grid.Row="0"/>
|
|
<Grid Grid.Row="1">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Grid.Row="0" FontFamily="{StaticResource Police2}" FontSize="12" Height="30" MaxWidth="400" Foreground="{StaticResource Couleur3}" TextAlignment="Center" Background="{StaticResource Couleur2}" Text="Password"/>
|
|
<PasswordBox Grid.Row="1"/>
|
|
</Grid>
|
|
<Grid Grid.Row="2">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Grid.Row="0" FontFamily="{StaticResource Police2}" FontSize="12" Height="30" MaxWidth="400" Foreground="{StaticResource Couleur3}" TextAlignment="Center" Background="{StaticResource Couleur2}" Text="Password Confirmation"/>
|
|
<PasswordBox Grid.Row="1"/>
|
|
</Grid>
|
|
|
|
<Button>
|
|
<Button Style="{StaticResource Button1}" Grid.Row="3" Content="S'inscrire" Margin="15" Width="100"/>
|
|
</Button>
|
|
|
|
<TextBlock Grid.Row="4" TextWrapping="Wrap" TextAlignment="Center" Text="Vous avez déjà rejoint le gang des requins?" Foreground="{StaticResource Couleur3}"></TextBlock>
|
|
<Button Style="{StaticResource Button1}" Grid.Row="4" Width="70" Height="20" Content="Se connecter"/>
|
|
</Grid>
|
|
</DockPanel>
|
|
</DockPanel>
|
|
</Window>
|