diff --git a/GameAtlas/.vs/GameAtlas/v17/.suo b/GameAtlas/.vs/GameAtlas/v17/.suo index d1f92fa..f8cb6f5 100644 Binary files a/GameAtlas/.vs/GameAtlas/v17/.suo and b/GameAtlas/.vs/GameAtlas/v17/.suo differ diff --git a/GameAtlas/GameAtlas/Views/PageAccueil.xaml b/GameAtlas/GameAtlas/Views/PageAccueil.xaml index 714fa2f..5d94804 100644 --- a/GameAtlas/GameAtlas/Views/PageAccueil.xaml +++ b/GameAtlas/GameAtlas/Views/PageAccueil.xaml @@ -39,13 +39,17 @@ /> + diff --git a/GameAtlas/GameAtlas/Views/PageAccueil.xaml.cs b/GameAtlas/GameAtlas/Views/PageAccueil.xaml.cs index 9221930..d3ac362 100644 --- a/GameAtlas/GameAtlas/Views/PageAccueil.xaml.cs +++ b/GameAtlas/GameAtlas/Views/PageAccueil.xaml.cs @@ -6,12 +6,18 @@ namespace GameAtlas.Views; public partial class PageAcceuil : ContentPage { - public Manager Manager => (App.Current as App).MyManager; + public Manager AccueilManager => (App.Current as App).MyManager; + public PageAcceuil() { InitializeComponent(); - + + } + + private async void OnProfil_Tapped(object sender, EventArgs e) + { + await Navigation.PushAsync(new PageProfil()); } private async void OnButtonClicked(object sender, EventArgs e) diff --git a/GameAtlas/GameAtlas/Views/PageInscription.xaml.cs b/GameAtlas/GameAtlas/Views/PageInscription.xaml.cs index 2f537e8..1e784a9 100644 --- a/GameAtlas/GameAtlas/Views/PageInscription.xaml.cs +++ b/GameAtlas/GameAtlas/Views/PageInscription.xaml.cs @@ -2,14 +2,14 @@ namespace GameAtlas.Views; using GameAtlas.Models; using System.Diagnostics; -using System.Text.RegularExpressions; - -public partial class PageInscription : ContentPage -{ +using System.Text.RegularExpressions; + +public partial class PageInscription : ContentPage +{ public Manager InscriptionManager => (App.Current as App).MyManager; - public PageInscription() - { - InitializeComponent(); + public PageInscription() + { + InitializeComponent(); } private async void OnSignUpClicked(object sender, EventArgs e)