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.
82 lines
2.6 KiB
82 lines
2.6 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="notus.InscrPage"
|
|
Title="InscrPage">
|
|
|
|
<Grid BackgroundColor="#1C1C1C">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="150"/>
|
|
<RowDefinition Height="150"/>
|
|
<RowDefinition Height="150"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Entry
|
|
Placeholder="Pseudo"
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Center"
|
|
WidthRequest="600"
|
|
HeightRequest="100"
|
|
FontSize="32"
|
|
Grid.Column="1"
|
|
Grid.Row="1"
|
|
TextColor="#74fabd"
|
|
BackgroundColor="#4A4A4A"
|
|
PlaceholderColor="#74fabd"
|
|
/>
|
|
|
|
<Entry
|
|
Placeholder="Mot de passe"
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Center"
|
|
WidthRequest="600"
|
|
HeightRequest="100"
|
|
FontSize="32"
|
|
Grid.Column="1"
|
|
Grid.Row="2"
|
|
IsPassword="true"
|
|
TextColor="#74fabd"
|
|
BackgroundColor="#4A4A4A"
|
|
PlaceholderColor="#74fabd"
|
|
/>
|
|
|
|
<Entry
|
|
Placeholder ="Verif mot de passe"
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Center"
|
|
WidthRequest="600"
|
|
HeightRequest="100"
|
|
FontSize="32"
|
|
Grid.Column="1"
|
|
Grid.Row="3"
|
|
IsPassword="true"
|
|
TextColor="#74fabd"
|
|
BackgroundColor="#4A4A4A"
|
|
PlaceholderColor="#74fabd"
|
|
/>
|
|
|
|
<Button
|
|
Text="Valider"
|
|
Grid.Column="1"
|
|
Grid.Row="4"
|
|
HorizontalOptions="End"
|
|
VerticalOptions="Center"
|
|
WidthRequest="110"
|
|
HeightRequest="70"
|
|
BackgroundColor="#74fabd"
|
|
TextColor="Black"
|
|
CornerRadius="10"
|
|
/>
|
|
|
|
</Grid>
|
|
|
|
</ContentPage>
|