parent
b4f6c46055
commit
c6c03bae96
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="MangaMap.Resources.Theme.DarkTheme">
|
||||
|
||||
<ResourceDictionary>
|
||||
<Color x:Key="TextColor">#FFFFFF</Color>
|
||||
<Color x:Key="EntryPlaceholderColor">#C7C7CC</Color>
|
||||
<Color x:Key="ButtonColor">#9370DB</Color>
|
||||
</ResourceDictionary>
|
||||
|
||||
</ResourceDictionary>
|
@ -0,0 +1,9 @@
|
||||
namespace MangaMap.Resources.Theme;
|
||||
|
||||
public partial class DarkTheme : ResourceDictionary
|
||||
{
|
||||
public DarkTheme()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
<?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.signUpPage"
|
||||
Title="loginPage"
|
||||
Background="#1E1E1E">
|
||||
|
||||
|
||||
|
||||
<StackLayout VerticalOptions="Center" HorizontalOptions="Center">
|
||||
|
||||
<Label Text="S'inscrire a MapManga" FontSize="Large" Margin="0,0,0,20"/>
|
||||
|
||||
<Entry Placeholder="Email" Margin="0,0,0,10" />
|
||||
|
||||
<Entry Placeholder="Nom d'utilisateur" Margin="0,0,0,10" />
|
||||
|
||||
<Entry Placeholder="Mot de passe" IsPassword="True" Margin="0,0,0,10" />
|
||||
|
||||
<Entry Placeholder="Confirmer le mot de passe" IsPassword="True" Margin="0,0,0,20" />
|
||||
|
||||
<Button Text="S'inscire" Clicked="OnLoginClicked" BackgroundColor="MediumPurple"/>
|
||||
|
||||
<StackLayout Orientation="Horizontal" HorizontalOptions="Center">
|
||||
<Label Text="Pas de compte ? " />
|
||||
<Label Text="S'inscrire" TextColor="MediumPurple">
|
||||
</Label>
|
||||
</StackLayout>
|
||||
|
||||
</StackLayout>
|
||||
|
||||
|
||||
|
||||
</ContentPage>
|
@ -0,0 +1,14 @@
|
||||
namespace MangaMap.Views;
|
||||
|
||||
public partial class signUpPage : ContentPage
|
||||
{
|
||||
public signUpPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void OnLoginClicked(object sender, EventArgs e)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
Loading…
Reference in new issue