diff --git a/mastermind/AppShell.xaml b/mastermind/AppShell.xaml
index f9c895b..4cb1846 100644
--- a/mastermind/AppShell.xaml
+++ b/mastermind/AppShell.xaml
@@ -4,12 +4,18 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:mastermind"
+ xmlns:pages="clr-namespace:mastermind.Pages"
Shell.FlyoutBehavior="Disabled"
Title="mastermind">
-
-
+
+
+
+
+
+
+
diff --git a/mastermind/Connexion.xaml b/mastermind/Connexion.xaml
new file mode 100644
index 0000000..0948d9d
--- /dev/null
+++ b/mastermind/Connexion.xaml
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/mastermind/Connexion.xaml.cs b/mastermind/Connexion.xaml.cs
new file mode 100644
index 0000000..e3696dd
--- /dev/null
+++ b/mastermind/Connexion.xaml.cs
@@ -0,0 +1,10 @@
+namespace mastermind
+{
+ public partial class Connexion : ContentPage
+ {
+ public Connexion()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/mastermind/MainPage.xaml b/mastermind/MainPage.xaml
deleted file mode 100644
index 031f06f..0000000
--- a/mastermind/MainPage.xaml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/mastermind/MainPage.xaml.cs b/mastermind/MainPage.xaml.cs
deleted file mode 100644
index 2255fdf..0000000
--- a/mastermind/MainPage.xaml.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace mastermind
-{
- public partial class MainPage : ContentPage
- {
- int count = 0;
-
- public MainPage()
- {
- InitializeComponent();
- }
-
- private void OnCounterClicked(object sender, EventArgs e)
- {
- count++;
-
- if (count == 1)
- CounterBtn.Text = $"Clicked {count} time";
- else
- CounterBtn.Text = $"Clicked {count} times";
-
- SemanticScreenReader.Announce(CounterBtn.Text);
- }
- }
-
-}
diff --git a/mastermind/Pages/NewPage1.xaml b/mastermind/Pages/NewPage1.xaml
new file mode 100644
index 0000000..806d5c5
--- /dev/null
+++ b/mastermind/Pages/NewPage1.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mastermind/Pages/NewPage1.xaml.cs b/mastermind/Pages/NewPage1.xaml.cs
new file mode 100644
index 0000000..bc74602
--- /dev/null
+++ b/mastermind/Pages/NewPage1.xaml.cs
@@ -0,0 +1,9 @@
+namespace mastermind.Pages;
+
+public partial class NewPage1 : ContentPage
+{
+ public NewPage1()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/mastermind/mastermind.csproj b/mastermind/mastermind.csproj
index 0383953..d4f2ba0 100644
--- a/mastermind/mastermind.csproj
+++ b/mastermind/mastermind.csproj
@@ -62,4 +62,16 @@
+
+
+ Connexion.xaml
+
+
+
+
+
+ MSBuild:Compile
+
+
+