Modification style

pull/1/head
Matheo HERSAN 2 years ago
parent 65a3924aa9
commit d737ce6ecf

@ -4,8 +4,8 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<Color x:Key="Primary">#512BD4</Color>
<Color x:Key="Secondary">#DFD8F7</Color>
<Color x:Key="Primary">#bd93f9</Color>
<Color x:Key="Secondary">#1E1E1E</Color>
<Color x:Key="Tertiary">#2B0B98</Color>
<Color x:Key="White">White</Color>
<Color x:Key="Black">Black</Color>

@ -14,11 +14,11 @@
<Entry Placeholder="Mot de passe" IsPassword="True" Margin="0,0,0,20" BackgroundColor="#EFF0F2"/>
<Button Text="Se connecter" Clicked="OnLoginClicked" BackgroundColor="MediumPurple"/>
<Button Text="Se connecter" Clicked="OnLoginClicked" BackgroundColor="{StaticResource Primary }"/>
<StackLayout Orientation="Horizontal" HorizontalOptions="Center">
<Label Text="Pas de compte ? " TextColor="#FFFFFF"/>
<Label Text="S'inscrire" TextColor="MediumPurple">
<Label Text="S'inscrire" TextColor="{StaticResource Primary}">
</Label>
</StackLayout>

@ -2,13 +2,14 @@
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MangaMap.Views.settingsPage"
Title="settingsPage">
Title="settingsPage"
BackgroundColor="{StaticResource Secondary}">
<StackLayout VerticalOptions="Center" HorizontalOptions="Center">
<Button Text="Deconnexion" Clicked="OnLoginClicked" BackgroundColor="MediumPurple" Margin="30"/>
<Button Text="Deconnexion" Clicked="OnLoginClicked" BackgroundColor="{StaticResource Primary}" Margin="0,0,0,30"/>
<Button Text="Connexion/Inscription" Clicked="OnLoginClicked" BackgroundColor="MediumPurple" />
<Button Text="Connexion/Inscription" Clicked="OnLoginClicked" BackgroundColor="{StaticResource Primary}"/>
</StackLayout>
</ContentPage>

@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MangaMap.Views.signUpPage"
Title="loginPage"
Background="#1E1E1E">
Background="{StaticResource Secondary}">
@ -19,11 +19,11 @@
<Entry Placeholder="Confirmer le mot de passe" IsPassword="True" Margin="0,0,0,20" BackgroundColor="#EFF0F2"/>
<Button Text="S'inscire" Clicked="OnLoginClicked" BackgroundColor="MediumPurple"/>
<Button Text="S'inscire" Clicked="OnLoginClicked" BackgroundColor="{StaticResource Primary}"/>
<StackLayout Orientation="Horizontal" HorizontalOptions="Center">
<Label Text="Pas de compte ? " TextColor="#FFFFFF"/>
<Label Text="S'inscrire" TextColor="MediumPurple">
<Label Text="S'inscrire" TextColor="{StaticResource Primary}">
</Label>
</StackLayout>

Loading…
Cancel
Save