parent
021e09e2a9
commit
708a63c2cc
@ -0,0 +1,74 @@
|
|||||||
|
<?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.homePage"
|
||||||
|
Title="homePage">
|
||||||
|
<ScrollView
|
||||||
|
BackgroundColor="Black">
|
||||||
|
<VerticalStackLayout
|
||||||
|
Spacing="70"
|
||||||
|
VerticalOptions="Center">
|
||||||
|
|
||||||
|
<SearchBar Placeholder="Recherche"
|
||||||
|
CancelButtonColor="Orange"
|
||||||
|
TextColor="Purple"
|
||||||
|
HorizontalTextAlignment="Center"
|
||||||
|
Margin="30"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<HorizontalStackLayout
|
||||||
|
Spacing="100"
|
||||||
|
HorizontalOptions="Center">
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Red"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Orange"/>
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Blue"/>
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Purple"/>
|
||||||
|
</HorizontalStackLayout>
|
||||||
|
|
||||||
|
<HorizontalStackLayout
|
||||||
|
Spacing="100"
|
||||||
|
HorizontalOptions="Center">
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Purple"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Green"/>
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Gray"/>
|
||||||
|
|
||||||
|
<Rectangle
|
||||||
|
WidthRequest="150"
|
||||||
|
HeightRequest="150"
|
||||||
|
Fill="Yellow"/>
|
||||||
|
</HorizontalStackLayout>
|
||||||
|
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ScrollView>
|
||||||
|
</ContentPage>
|
@ -0,0 +1,10 @@
|
|||||||
|
namespace MangaMap.Views;
|
||||||
|
|
||||||
|
public partial class homePage : ContentPage
|
||||||
|
{
|
||||||
|
public homePage()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
<?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">
|
||||||
|
|
||||||
|
<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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,14 @@
|
|||||||
|
namespace MangaMap.Views;
|
||||||
|
|
||||||
|
public partial class loginPage : ContentPage
|
||||||
|
{
|
||||||
|
public loginPage()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnLoginClicked(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue