diff --git a/MangaMap/CustomHeader.xaml b/MangaMap/CustomHeader.xaml
index b9827b1..ff0bfe8 100644
--- a/MangaMap/CustomHeader.xaml
+++ b/MangaMap/CustomHeader.xaml
@@ -7,6 +7,7 @@
+ VerticalOptions="Center"
+ Clicked="ImageButton_Clicked"/>
\ No newline at end of file
diff --git a/MangaMap/CustomHeader.xaml.cs b/MangaMap/CustomHeader.xaml.cs
index b34c7fb..3c3d567 100644
--- a/MangaMap/CustomHeader.xaml.cs
+++ b/MangaMap/CustomHeader.xaml.cs
@@ -1,9 +1,15 @@
-namespace MangaMap;
-
-public partial class NewContent1 : ContentView
-{
- public NewContent1()
- {
- InitializeComponent();
- }
+using MangaMap.Views;
+namespace MangaMap;
+
+public partial class NewContent1 : ContentView
+{
+ public NewContent1()
+ {
+ InitializeComponent();
+ }
+
+ void ImageButton_Clicked(System.Object sender, System.EventArgs e)
+ {
+ Navigation.PushAsync(new homePage());
+ }
}
\ No newline at end of file
diff --git a/MangaMap/Model/Admin.cs b/MangaMap/Model/Admin.cs
index 1ba1fe6..9905621 100644
--- a/MangaMap/Model/Admin.cs
+++ b/MangaMap/Model/Admin.cs
@@ -1,24 +1,24 @@
using MangaMap.Views;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace MangaMap.Model
-{
- public class Admin : Personne
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MangaMap.Model
+{
+ public class Admin : Personne
{
public Admin(string mdp, string email, string pseudo) : base(mdp, email, pseudo)
{
}
- public int Id { get; private set; }
-
-
-
- public void ajouterAnime() { }
-
- public void supprimerAnime() { }
- }
-}
+ public int Id { get; private set; }
+
+
+
+ public void ajouterAnime() { }
+
+ public void supprimerAnime() { }
+ }
+}
diff --git a/MangaMap/Model/Manager.cs b/MangaMap/Model/Manager.cs
new file mode 100644
index 0000000..48c1d72
--- /dev/null
+++ b/MangaMap/Model/Manager.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MangaMap.Model
+{
+ internal class Manager
+ {
+ }
+}
diff --git a/MangaMap/Model/Personne.cs b/MangaMap/Model/Personne.cs
index 0a4652c..b044450 100644
--- a/MangaMap/Model/Personne.cs
+++ b/MangaMap/Model/Personne.cs
@@ -8,18 +8,9 @@ namespace MangaMap.Model
{
public class Personne
{
- public string MotDePasse { get; private set; }
- public string Email { get; private set; }
- public string Pseudo { get; private set; }
-
- /*public Liste[] Listes { get; private set; }*/
-
- public Personne(string mdp, string email, string pseudo)
- {
- Email = email;
- Pseudo = pseudo;
- MotDePasse = mdp;
- }
+ public string MotDePasse { get; set; }
+ public string Email { get; set; }
+ public string Pseudo { get; set; }
public bool MofifierMotDePasse(string MotDePasse)
{
diff --git a/MangaMap/Views/listPage.xaml b/MangaMap/Views/listPage.xaml
index 933ecdb..14ba381 100644
--- a/MangaMap/Views/listPage.xaml
+++ b/MangaMap/Views/listPage.xaml
@@ -1,171 +1,178 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
+
-
-
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
-
-
-
-
-
-
+
-
+
\ No newline at end of file