merge des vus text et recherche (recherPage) manque un richedit text pour les notes
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
4c77db58fa
commit
196b73c81a
@ -0,0 +1,97 @@
|
||||
<?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="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>
|
||||
|
||||
|
||||
|
||||
<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"
|
||||
/>
|
||||
|
||||
<ImageButton
|
||||
Source="fleche_reour.png"
|
||||
Aspect="AspectFit"
|
||||
Grid.Column="0"
|
||||
Grid.Row="0"
|
||||
Margin="20"
|
||||
HorizontalOptions="Start"
|
||||
VerticalOptions="Start"
|
||||
WidthRequest="50"
|
||||
HeightRequest="50"
|
||||
BackgroundColor="#4A4A4A"
|
||||
CornerRadius="50"
|
||||
/>
|
||||
</Grid>
|
||||
|
||||
|
||||
</ContentPage>
|
After Width: | Height: | Size: 8.1 KiB |
Loading…
Reference in new issue