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.
54 lines
1.5 KiB
54 lines
1.5 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.PageConnexion"
|
|
BackgroundImageSource="back.png">
|
|
<toolkit:DockLayout
|
|
>
|
|
|
|
|
|
|
|
<FlexLayout
|
|
Direction="Column"
|
|
JustifyContent="Center"
|
|
AlignItems="Center">
|
|
|
|
<Label
|
|
Text="Bienvenue !"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center"
|
|
FontSize="38"
|
|
HeightRequest="100" />
|
|
|
|
<Button
|
|
Text="Se connecter"
|
|
FontSize="20"
|
|
WidthRequest="250"
|
|
HeightRequest="70"
|
|
BorderColor="Black"
|
|
BorderWidth="2"
|
|
Margin="5"
|
|
BackgroundColor="#6193b7"/>
|
|
|
|
<Button
|
|
|
|
Text="Créer un compte"
|
|
FontSize="20"
|
|
WidthRequest="250"
|
|
HeightRequest="70"
|
|
BorderColor="Black"
|
|
BorderWidth="2"
|
|
Margin="5"
|
|
BackgroundColor="#6193b7"/>
|
|
|
|
</FlexLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</toolkit:DockLayout>
|
|
</ContentPage> |