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.
47 lines
1.4 KiB
47 lines
1.4 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"
|
|
x:Class="Vues.Inscription"
|
|
Title="Inscription">
|
|
<FlexLayout BackgroundColor="DarkSeaGreen"
|
|
AlignItems="Center"
|
|
JustifyContent="Center"
|
|
Direction="Column">
|
|
|
|
<Label
|
|
Text="Inscription"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center"
|
|
FontSize="38"
|
|
HeightRequest="100"/>
|
|
|
|
<Entry
|
|
MaxLength="50"
|
|
Placeholder="Entrez votre nom"
|
|
PlaceholderColor="DarkSlateGray"
|
|
WidthRequest="200"
|
|
Style="{StaticResource CommonEntryStyle}" />
|
|
|
|
<Entry
|
|
MaxLength="50"
|
|
Placeholder="Entrez votre nom"
|
|
PlaceholderColor="DarkSlateGray"
|
|
Margin="5"
|
|
WidthRequest="200"
|
|
Style="{StaticResource CommonEntryStyle}" />
|
|
|
|
<Button
|
|
|
|
Text="Valider"
|
|
FontSize="20"
|
|
WidthRequest="200"
|
|
BorderColor="DarkGreen"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</FlexLayout>
|
|
</ContentPage> |