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.
notus/Inscription page/MauiApp1/MainPage.xaml

116 lines
4.0 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="MauiApp1.MainPage">
<Grid BackgroundColor="Grey">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="350"/>
<ColumnDefinition Width="700"/>
<ColumnDefinition Width="500"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="150"/>
<RowDefinition Height="150"/>
<RowDefinition Height="150"/>
<RowDefinition Height="150"/>
<RowDefinition Height="200"/>
</Grid.RowDefinitions>
<Grid.Resources>
<Style TargetType="Frame">
<Setter Property="HorizontalOptions" Value="Center"/>
<Setter Property="VerticalOptions" Value="Center"/>
<Setter Property="Margin" Value="2"/>
<Setter Property="Padding" Value="0"/>
<Setter Property="HasShadow" Value="False"/>
<Setter Property="IsClippedToBounds" Value="True"/>
<Setter Property="CornerRadius" Value="50"/>
</Style>
</Grid.Resources>
<Frame
Grid.Column="1"
Grid.Row="1"
>
<Entry
Placeholder="Pseudo"
HorizontalOptions="Center"
VerticalOptions="Center"
WidthRequest="600"
HeightRequest="100"
FontSize="32"
Grid.Column="1"
Grid.Row="1"
BackgroundColor="LightGray"
PlaceholderColor="DarkCyan"
/>
</Frame>
<Frame
Grid.Column="1"
Grid.Row="2"
>
<Entry
Placeholder="Mot de passe"
HorizontalOptions="Center"
VerticalOptions="Center"
WidthRequest="600"
HeightRequest="100"
FontSize="32"
Grid.Column="1"
Grid.Row="2"
IsPassword="true"
BackgroundColor="LightGray"
PlaceholderColor="DarkCyan"
/>
</Frame>
<Frame
Grid.Column="1"
Grid.Row="3"
CornerRadius="50"
>
<Entry
Placeholder ="Verif mot de passe"
HorizontalOptions="Center"
VerticalOptions="Center"
WidthRequest="600"
HeightRequest="100"
FontSize="32"
Grid.Column="1"
Grid.Row="3"
IsPassword="true"
BackgroundColor="LightGray"
PlaceholderColor="DarkCyan"
/>
</Frame>
<Button
Text="Valider"
Grid.Column="1"
Grid.Row="4"
HorizontalOptions="End"
VerticalOptions="Center"
WidthRequest="200"
HeightRequest="50"
BackgroundColor="LightGrey"
TextColor="DarkCyan"
CornerRadius="25"
/>
<ImageButton
Source="fleche_reour.png"
Aspect="AspectFit"
Grid.Column="0"
Grid.Row="0"
Margin="20"
HorizontalOptions="Start"
VerticalOptions="Start"
WidthRequest="50"
HeightRequest="50"
BackgroundColor="LightGrey"
CornerRadius="50"
/>
</Grid>
</ContentPage>