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.
SAE_2.01_-_Developpement_du.../Sources/Vues/Inscription.xaml

79 lines
3.9 KiB

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
x:Class="Vues.Inscription"
BackgroundImageSource="back.png">
<toolkit:DockLayout>
<Image
Source="alexmc.png"
toolkit:DockLayout.DockPosition="Right"
HeightRequest="400"
Margin="150"/>
<FlexLayout
JustifyContent="Center"
AlignItems="Center"
Direction="Column">
<FlexLayout.Resources>
<Style TargetType="Entry">
<Setter Property="WidthRequest" Value="250" />
<Setter Property="MaxLength" Value="60" />
<Setter Property="BackgroundColor" Value="{StaticResource Gray300}" />
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
<Setter Property="Margin" Value="3" />
</Style>
<Style x:Key="buttonStyle" TargetType="Button">
<Setter Property="FontSize" Value="Small" />
<Setter Property="WidthRequest" Value="100" />
<Setter Property="HeightRequest" Value="50" />
<Setter Property="BorderColor" Value="Black" />
<Setter Property="BorderWidth" Value="1" />
<Setter Property="Margin" Value="5" />
<Setter Property="BackgroundColor" Value="{StaticResource buttonBackgroundColor}" />
<Setter Property="VisualStateManager.VisualStateGroups">
<VisualStateGroupList>
<VisualStateGroup>
<VisualState x:Name="Normal">
<VisualState.Setters>
<Setter Property="Scale"
Value="1" />
</VisualState.Setters>
</VisualState>
<VisualState x:Name="PointerOver">
<VisualState.Setters>
<Setter Property="Scale"
Value="1.05" />
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateGroupList>
</Setter>
</Style>
</FlexLayout.Resources>
<Image
VerticalOptions="Center"
HorizontalOptions="Center"
Source="inscription.png"
HeightRequest="70"
Margin="0, 0, 0, 30" />
<HorizontalStackLayout>
<Entry x:Name="Nom" Placeholder="Nom"
Text="{Binding Nom}"/>
<Entry x:Name="Prenom" Placeholder="Prénom"
Text="{Binding Prenom}"/>
</HorizontalStackLayout>
<HorizontalStackLayout>
<Entry x:Name="Id" TextChanged="Id_TextChanged" Placeholder="Identifiant"
Text="{Binding Pseudo}"/>
<Entry x:Name="Mdp" Placeholder="Mot de passe"
Text="{Binding Mdp}"
IsPassword="True"/>
</HorizontalStackLayout>
<Label x:Name="resultLabel" IsVisible="False" Text="Error, this username is already taken!" TextColor="Red"/>
<Button Style="{StaticResource buttonStyle}"
Text="Valider"
Clicked="Valid_Clicked"/>
</FlexLayout>
</toolkit:DockLayout>
</ContentPage>