parent
9184f25ac9
commit
65a3924aa9
@ -0,0 +1,14 @@
|
||||
<?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.settingsPage"
|
||||
Title="settingsPage">
|
||||
|
||||
<StackLayout VerticalOptions="Center" HorizontalOptions="Center">
|
||||
|
||||
<Button Text="Deconnexion" Clicked="OnLoginClicked" BackgroundColor="MediumPurple" Margin="30"/>
|
||||
|
||||
<Button Text="Connexion/Inscription" Clicked="OnLoginClicked" BackgroundColor="MediumPurple" />
|
||||
|
||||
</StackLayout>
|
||||
</ContentPage>
|
@ -0,0 +1,14 @@
|
||||
namespace MangaMap.Views;
|
||||
|
||||
public partial class settingsPage : ContentPage
|
||||
{
|
||||
public settingsPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void OnLoginClicked(object sender, EventArgs e)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
Loading…
Reference in new issue