diff --git a/MangaMap/App.xaml.cs b/MangaMap/App.xaml.cs
index 568d279..74ca949 100644
--- a/MangaMap/App.xaml.cs
+++ b/MangaMap/App.xaml.cs
@@ -1,4 +1,6 @@
-namespace MangaMap;
+using MangaMap.Views;
+
+namespace MangaMap;
public partial class App : Application
{
@@ -7,5 +9,6 @@ public partial class App : Application
InitializeComponent();
MainPage = new AppShell();
+
}
}
diff --git a/MangaMap/AppShell.xaml b/MangaMap/AppShell.xaml
index a62492b..9320469 100644
--- a/MangaMap/AppShell.xaml
+++ b/MangaMap/AppShell.xaml
@@ -4,13 +4,17 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MangaMap"
- xmlns:Views="clr-namespace:MapManga.Views"
- Shell.FlyoutBehavior="Disabled">
-
-
+ xmlns:Views="clr-namespace:MangaMap.Views">
+
+
+
+
+
+
+
+
diff --git a/MangaMap/MainPage.xaml b/MangaMap/MainPage.xaml
index 4fc3ccf..f412cbf 100644
--- a/MangaMap/MainPage.xaml
+++ b/MangaMap/MainPage.xaml
@@ -3,70 +3,23 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MangaMap.MainPage">
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
+
diff --git a/MangaMap/MangaMap.csproj b/MangaMap/MangaMap.csproj
index ede9cfe..732c162 100644
--- a/MangaMap/MangaMap.csproj
+++ b/MangaMap/MangaMap.csproj
@@ -52,4 +52,19 @@
+
+
+ loginPage.xaml
+
+
+
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+
diff --git a/MangaMap/Views/homePage.xaml b/MangaMap/Views/homePage.xaml
new file mode 100644
index 0000000..e2e92d3
--- /dev/null
+++ b/MangaMap/Views/homePage.xaml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MangaMap/Views/homePage.xaml.cs b/MangaMap/Views/homePage.xaml.cs
new file mode 100644
index 0000000..89f558a
--- /dev/null
+++ b/MangaMap/Views/homePage.xaml.cs
@@ -0,0 +1,10 @@
+namespace MangaMap.Views;
+
+public partial class homePage : ContentPage
+{
+ public homePage()
+ {
+ InitializeComponent();
+ }
+
+}
\ No newline at end of file
diff --git a/MangaMap/Views/loginPage.xaml b/MangaMap/Views/loginPage.xaml
new file mode 100644
index 0000000..340ab4d
--- /dev/null
+++ b/MangaMap/Views/loginPage.xaml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MangaMap/Views/loginPage.xaml.cs b/MangaMap/Views/loginPage.xaml.cs
new file mode 100644
index 0000000..37de7d4
--- /dev/null
+++ b/MangaMap/Views/loginPage.xaml.cs
@@ -0,0 +1,14 @@
+namespace MangaMap.Views;
+
+public partial class loginPage : ContentPage
+{
+ public loginPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnLoginClicked(object sender, EventArgs e)
+ {
+ //
+ }
+}
\ No newline at end of file