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.
25 lines
1.3 KiB
25 lines
1.3 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="MangaMap.Views.loginPage"
|
|
Title="loginPage">
|
|
|
|
|
|
<StackLayout VerticalOptions="Center" HorizontalOptions="Center" BackgroundColor="{StaticResource BackgroundColor}">
|
|
|
|
<Label Text="Se connecter a MapManga" FontSize="Large" Margin="0,0,0,20" TextColor="{StaticResource TextColor}" />
|
|
|
|
<Entry Placeholder="Email" Margin="0,0,0,10" TextColor="{StaticResource TextColor}" PlaceholderColor="{StaticResource PlaceholderColor}" />
|
|
|
|
<Entry Placeholder="Mot de passe" IsPassword="True" Margin="0,0,0,20" TextColor="{StaticResource TextColor}" PlaceholderColor="{StaticResource PlaceholderColor}" />
|
|
|
|
<Button Text="Se connecter" Clicked="OnLoginClicked" BackgroundColor="{StaticResource ButtonBackgroundColor}" TextColor="{StaticResource ButtonTextColor}" />
|
|
|
|
<StackLayout VerticalOptions="End" HorizontalOptions="Center" Orientation="Horizontal">
|
|
<Label Text="Pas de compte ? " TextColor="{StaticResource TextColor}" />
|
|
<Label Text="S'inscrire" TextColor="{StaticResource ButtonBackgroundColor}" />
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
</ContentPage> |